usadarts Posted May 18, 2006 Share Posted May 18, 2006 Is there a way to pass a range or >= or <= in the URL? 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. Link to comment https://forums.phpfreaks.com/topic/9891-passing-parms-in-url/#findComment-36784 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.