I make 1 website using this method , the website have 3 column , Left_body.php, right_body.php, body_center.php and header.php and footer.php i make them individual , then i make 1 file name index.php, and use this method to add all in index <?php include ("body_center.php");?> in body_center.php i call all the other html page links with this method else if ($_GET['id'] == "articles"){ include ("centerbody/articles.html"); } else if ($_GET['id'] == "sharfa_shames"){ include ("centerbody/articals/sharfa_shames.html");} i have so many page and links and i dont want to make mess i use this method because when i add any new page i just make that html page in centerbody and include and make link in just body_center.php file , What you think is this method is good to make website ? eny one else using this ?