Page 1 of 1

Query String for search

Posted: 2014-01-15 19:58
by honuware
I created a database to manage a bicycle impound. I am wanting to create asset tags with a QR code on it that will query the database when scanned. What URL format should I use to show the results of the saved filter below so I can incorporate it into the QR code on the tag.

I got this from the saved filter:

<form method="post" action="http://mysite.com//table_name_view.php">
<input name="FilterAnd[1]" value="" type="hidden">
<input name="FilterField[1]" value="5" type="hidden">
<input name="FilterOperator[1]" value="<=>" type="hidden">
<input name="FilterValue[1]" value="tag_number" type="hidden">


<input type="submit" value="Show Filtered Data">
</form>

Thanks for any ideas you may have.

Re: Query String for search

Posted: 2014-02-04 07:54
by a.gneady
You can achieve the same filter using this URL:

Code: Select all

http://mysite.com//table_name_view.php?FilterAnd[1]=&FilterField[1]=5&FilterOperator[1]=<%3D>&FilterValue[1]=tag_number