Is it possible to hide the URL link that I use in php in order not to show to user to prevent user to change the URL link? And I'm using get function on another php page to retrieve the package ID.
Example I have a php URL code like this:
<a href="banner.php?packageID=1234" >
When user click on the link and lead to the URL, is that possible to hide the "1234" and just show banner.php?packageID= on the URL link only?
Please guide me through this. Thanks
banner/1234, and have your server, internally, rewrite it tobanner.php?packageID=1234?