Jump to content

$_GET making me mad!


lpxxfaintxx

Recommended Posts

Hi,

Lets say a URL of a page is "viewcat.php?act=maincat&id=1." It uses $_GET to see how many results the page will show, for example, "viewcat.php?act=maincat&id=1&sortnum=15" will show 15 results. I am trying to use a form to do this, but no matter what I try to do, it always make the url "viewcat.php?sortnum=10" instead of "viewcat.php?act=maincat&id=1&sortnum=10." Is there any way to pass the variable onto the new page?

Here is the code for the form:
[code]

<form name="form2" method="GET" action="viewcat.pgp?act=maincat&sortnum=&id=$id">Tutorials per Page <select name="sortnum" onchange="javascript:submit()"><option value="5">5</option> <option value="10">10</option> <option value="25">25</option> <option value="50">50</option></select></form>

[/code]

Please, help would be appreciated.

Regards
Link to comment
https://forums.phpfreaks.com/topic/12992-_get-making-me-mad/
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.