Jump to content

Using $_POST


mitcho

Recommended Posts

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
Link to comment
https://forums.phpfreaks.com/topic/7818-using-_post/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.