usadarts Posted May 18, 2006 Share Posted May 18, 2006 Is there a way to pass a range or >= or <= in the URL? Quote Link to comment https://forums.phpfreaks.com/topic/9891-passing-parms-in-url/ Share on other sites More sharing options...
AndyB Posted May 18, 2006 Share Posted May 18, 2006 [code]<a href='nextpage.php?min=this&max=that'>nextpage</a>[/code]In nextpage.php retrieve the URL passed variable from the $_GET array and do whatever testing you want. Just remember that URLs can be modified by the user. Using 'hidden' values in a form method="post" is better is you don't want people messing around with your passed variables. Quote Link to comment https://forums.phpfreaks.com/topic/9891-passing-parms-in-url/#findComment-36784 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.