You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was wonder how we can still use query parameter in the url since this mvc set this up in .htacces file. i think query parameter still common in mvc for purposes like order and filtering data ie http://example.com/games/?sortby=asc&page=3&genre=rpg
The text was updated successfully, but these errors were encountered:
Query parameters are not affected, you can still access them in the $_GET array as always, for example using the URL example above it would be $sortby = $_GET['sortby'];
I was wonder how we can still use query parameter in the url since this mvc set this up in .htacces file. i think query parameter still common in mvc for purposes like order and filtering data ie http://example.com/games/?sortby=asc&page=3&genre=rpg
The text was updated successfully, but these errors were encountered: