Create A 5 Page Website With PHP Includes, HTML5, CSS3 & Bootstrap 4



https://i.ytimg.com/vi/h-i5rZwlfu4/hqdefault.jpg



➢COMPLETE UDEMY COURSE COUPON:
https://w3newbie.com/udemy-coupons/
➢Tutorial Starter Files:
https://m.w3newbie.com/d/tutorial-35.zip

➢COMPLETE UDEMY COURSE COUPON:
https://w3newbie.com/udemy-coupons/

➢ SUSCRIBE: http://goo.gl/Y2rJSj

Create A 5 Page Website With PHP Includes, HTML5, CSS3 & Bootstrap 4! Learn how to turn a single page HTML website into a 5 page website using PHP include statements.

Original source


21 responses to “Create A 5 Page Website With PHP Includes, HTML5, CSS3 & Bootstrap 4”

  1. Great tutorial. Subscribed. What's the main advantage of this? Loads faster? PHP7 is freaking awesome. I've stayed away from Bootstrap because I've always heard it's bloated. How do you feel about it?

    P.S…. would love to see some PHP content with more responsive sites!

  2. Nice tutorial!
    For those interested, if you want to prevent to set the $page on every page you could use:

    <li class="nav-item">
    <a class="nav-link <?php if(pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME) == 'index'){echo 'active';} ?>" href="index.phtml">Home</a>
    </li>
    <li class="nav-item">
    <a class="nav-link <?php if(pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME) == 'portfolio'){echo 'active';} ?>" href="portfolio.phtml">Portfolio</a>
    </li>
    <li class="nav-item">
    <a class="nav-link <?php if(pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME) == 'pricing'){echo 'active';} ?>" href="pricing.phtml">Pricing</a>
    </li>
    <li class="nav-item">
    <a class="nav-link <?php if(pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME) == 'team'){echo 'active';} ?>" href="team.phtml">Team</a>
    </li>
    <li class="nav-item">
    <a class="nav-link <?php if(pathinfo($_SERVER['PHP_SELF'], PATHINFO_FILENAME) == 'contact'){echo 'active';} ?>" href="contact.phtml">Contact</a>
    </li>

  3. Absolute huge fan of your videos and design work!! I have been able to learn so much and was wondering if you are able to do a video in creating a e-commerce site with complete functionality and security?

Leave a Reply