Skip to main content

Posts

Showing posts from August, 2016

how to redirect my site with www and without www

 redirect site with www and without www add  a record in your cpanel

php master page code free

how to make master page in php easy way to make master page in php this work same like asp .net first defined your header part then defined your menu part then defined your footer part  make separate php file  header.php menu.php footer.php put your content in a file ============== master.php <body> <div><?php include('header.php');? ></div> <div><?php include('menu.php');? ></div> <div><?php include($page_content);? ></div> <div><?php include('footer.php');? ></div> </body> ============= header.php <?php <h1> your company name </h1> ?> ================== menu.php <?php <a href="#" >home</a> ?> ======= footer.php <?php <h1> your company name </h1> ?> ===== make your content file === home_.php <?php <h1> welcome your company name </h1> ?> ====== home.php  ==== <?php $