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
Share on other sites

do something like this:

[code]
<?php

$id = $_GET['id']   // Get the value in id and then use the switch to decide what page to display

switch($id)
{
  default:
  include('home.html');
  break;
  case "home":
  include('home.html');
  break;
  ...
  ...
}
?>
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.