
Y que opinan de practicar con este tipo de plantillas???


Debería quedarme igual que en el minuto 2:37 pero solo me queda en blanco
Enroll My Course : Next Level CSS Animation and Hover Effects
https://www.udemy.com/course/css-hover-animation-effects-from-beginners-to-expert/?referralCode=90A9FFA7990A4491CF8D
Another Course : Build Complete Real World Responsive Websites from Scratch
https://www.udemy.com/course/complete-responsive-website-design-from-scratch/?referralCode=F1DFAF1715AF6CE5780E
——————
Join Our Channel Membership And Get Source Code of My New Video’s Everyday!
Join : https://www.youtube.com/channel/UCbwXnUipZsLfUckBPsC7Jog/join
——————
Patreon : https://www.patreon.com/onlinetutorials
Facebook Page : https://www.facebook.com/onlinetutorialsYT
Instagram : https://www.instagram.com/onlinetutorials_youtube
Twitter : https://twitter.com/OnlineTutoria16
Website : http://www.onlinetutorialsweb.com
Buy Me A Coffee : https://www.buymeacoffee.com/onlineTutorials
——————
give proper credit if you repost this on other social media platform
——————
wScratchPad.js by websanova
Plugin URL : https://github.com/websanova/wScratchPad
——————
image source : https://www.pexels.com
images download link : https://drive.google.com/drive/folders/1srgAKgSAVpeigNZvWVDN4_IlKhKExyeq?usp=sharing
——————
Disclaimer video is for educational purpose only. Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for «fair use» for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use



$sql_var= «SELECT distinct k_idproces,n_nomproces,n_descrproces,count(*)
FROM bd_general.t_wf10d_twf09_sgtoact
where dm_estwfsto not in (‘CE’,’FI’,’CA’,’TR’,’TO’)
group by n_nomproces,n_descrproces,k_idproces»;
sc_lookup(ds, $sql_var);
if ( !empty( {ds} ) ) {
//RECORRE HE INSERTA LOS DATOS RECUPERADOS
foreach({ds} as $obj)
{
$k_idproces = $obj[0];
$n_nomproces = $obj[1];
$n_descrproces = $obj[2];
$cantidad = $obj[3];
$item = Array(
‘k_idproces’ => $k_idproces,
‘n_nomproces’ => $n_nomproces,
‘n_descrproces’ => $n_descrproces,
‘cantidad’ => $cantidad
);
/***************TAB 1*************************************/
$var_html .= ‘ <div class=»panel-group1″ id=»accordion1″>’;
$var_html .= ‘ <div class=»panel panel-default mb-4″>’;
$var_html .= ‘ <div class=»panel-heading1 «>’;
$var_html .= ‘ <h4 class=»panel-title1″>’;
$var_html .= ‘ <a class=»accordion-toggle collapsed» data-toggle=»collapse» data-parent=»#accordion» href=»#collapseFour» aria-expanded=»false»>’.$k_idproces.’ ‘.$n_nomproces.’ ‘.$cantidad.'</a>’;
$var_html .= ‘ </h4>’;
$var_html .= ‘ </div>’;
$var_html .= ‘ <div id=»collapseFour» class=»panel-collapse collapse» role=»tabpanel» aria-expanded=»false»>’;
$var_html .= ‘ <div class=»panel-body»>’;
$var_html .= ‘<ul>’;
$var_html .= ‘ <li>Link</li>’;
$var_html .= ‘ <li>Link</li>’;
$var_html .= ‘ <li>Link</li>’;
$var_html .= ‘</ul>’;
$var_html .= ‘ </div>’;
$var_html .= ‘ </div>’;
$var_html .= ‘ </div>’;
$var_html .= ‘</div>’;
/******************************************************/
}
echo $var_html;
}else{
echo «Error!»;
}
