Jump to content

More than 1 $_GET useage in link


Andy11548

Recommended Posts

Is it possiable to give the URL 2 different like "id's" so that I can use 2 $_GET methods?

 

 

So the link would be like:

 

view.php?id=3;currentpage=2

 

or something, so then I can use a get method to grab what page I'm on and to grab information from the database using ID's?

 

Thanks,

Andy

Link to comment
https://forums.phpfreaks.com/topic/241547-more-than-1-_get-useage-in-link/
Share on other sites

You are pretty much there already :)

 

view.php?id=3;currentpage=2 --> view.php?id=3&currentpage=2

 

Use the url above, and the the code below on the page you are accessing, it'll show both GET variables and values.

 

<?PHP
  echo '<pre>';
  print_r($_GET);
  echo '</pre>';
?>

 

$_GET['id'] would return 3

$_GET['currentpage'] would return 2

 

Regards, PaulRyan.

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.