mitcho Posted April 19, 2006 Share Posted April 19, 2006 im currently using some PHP code to load pages using includes:[code]<?php switch($id) { default: include('home.html');break; case "home": include('home.html');break; case "about": include('about.html');break; case "services": include('services.html');break; case "people": include('people.html');break; case "news": include('news/news.php');break; case "contact": include('contact.html');break; case "disclaimer": include('disclaimer.html');break; case "sitemap": include('sitemap.html');} ?>[/code]and i call links like this: [code]<a href="index.php?id=contact">CONTACT</a>[/code]but as you can see here this isnt working. [a href=\"http://www.guardianlawyers.com.au/\" target=\"_blank\"]http://www.guardianlawyers.com.au/[/a]i have been told to use $_POST or $_GET but am not sure how to go about this... any one help update my code to get it working?Thanks Quote Link to comment https://forums.phpfreaks.com/topic/7818-using-_post/ Share on other sites More sharing options...
devofash Posted April 19, 2006 Share Posted April 19, 2006 do something like this:[code]<?php $id = $_GET['id'] // Get the value in id and then use the switch to decide what page to displayswitch($id) { default: include('home.html'); break; case "home": include('home.html'); break; ... ...} ?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/7818-using-_post/#findComment-28519 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.