Query String for search

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
honuware
Posts: 3
Joined: 2014-01-15 19:39

Query String for search

Post by honuware » 2014-01-15 19:58

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.

User avatar
a.gneady
Site Admin
Posts: 1287
Joined: 2012-09-27 14:46
Contact:

Re: Query String for search

Post by a.gneady » 2014-02-04 07:54

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
:idea: AppGini plugins to add more power to your apps:
  • DataTalk is an innovative AppGini plugin based on ChatGPT that allows you to interact with your AppGini database using natural language questions, without writing any SQL. Check the demo video
  • Mass Update plugin: Update multiple records at once and improve your workflow efficiency.
  • Check our other plugins and get a generous discount of up to 30% when buying 2 or more plugins.

Post Reply