Jump to content

Using The Get Request


CORT0619

Recommended Posts

So, I'm using the get request to send values input by the user through the url to another page:

 

<a href="tms.php?ticket_num=$ticket_num&name=$name&email=$email&phone=$phone&problem=$problem&tech=$tech"><input type="submit" value="Search" /></a>

 

however, once I click the above button the url reads:

 

<form>http://localhost/get?ticket_num=1234&name=Tiffany+Happy&email=tharmon15%40gmail.com&phone=3523453643&problem=hardware+issue&tech=Calvin+Schaffer</form>

 

So, I'm wondering why the url changes to get? instead of tms.php?

 

Thanks,

 

-Crystal.

Link to comment
https://forums.phpfreaks.com/topic/272326-using-the-get-request/
Share on other sites

Either

 

Remove the submit button and replace it with the string "Search"

 

or

 

Put the search values in form elements (text boxes or hidden fields) and use the form to search (once you have the method and actions the right way round

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.