oceans Posted July 11, 2007 Share Posted July 11, 2007 Dear People, I send one variable to next page like this echo "<td><a href=\"/Product/Member.php?ID=".$MemID']."\">".$row['MemID']."</a></td>"; I catch on the next page like this $MemID=$_GET['MemID']; can any one help me how can I send and catch 2 variables... Quote Link to comment Share on other sites More sharing options...
Yesideez Posted July 11, 2007 Share Posted July 11, 2007 Any more than one variable and you use a & instead of ? eg. file.php?first=1&second=12 Then you use another GET in file.php: $first=$_GET['first']; $second=$_GET['second']; Quote Link to comment Share on other sites More sharing options...
oceans Posted July 11, 2007 Author Share Posted July 11, 2007 Thanks Friend Quote Link to comment 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.