[ad_1]
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”
Hi guys, for the latest coupon to the Complete Bootstrap Udemy Course go to this page I just created: https://w3newbie.com/udemy-coupons/
Udemy now only gives us 5 days to use the same $10 coupon ( no worries 😎there's a countdown on the page ).
I love your tutorials you are doing great
This is what I was looking for. I got the idea now. Thanks.
Is this the best way to go or are you better off making an Amp website or html5 & CSS3 ?
Great tutorial! I created a php site exactly like this in the video. Is MVC a better solution to make a PHP site, if only I will support the created site?
what local server are you using?
If include file have in another find
And I want include. In another file , how may do , please help me sir
Te amo cara, obrigada.
Sir i got an error saying variable page is not defined can you please help?
15:02 don't tell me your stomach made that sound
waoooo you one of the best! many thanks for this amazing tutorial. can you also make a DB and show us how you can implement it with this site ?
How do I get these codes? For basis,pls
Hello,
How to make admin template with Bootstrap 4 ?
Great tutorial! Please make one for ecommerce website.
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!
Sir @drew ryan we want you to make video tutorials of full php projects
Amazing!! Thanks
Hi Drew could you make a video on how to make a wordpress theme from the themes you made? If already done please can you share the link? Your tutorials are the best.
Man Im happy to see this, been longing to create a website of my own. With this 🙌im good to go.
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>
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?