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... Link to comment https://forums.phpfreaks.com/topic/59393-solved-sending-and-grabbing-two-varibles/ 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']; Link to comment https://forums.phpfreaks.com/topic/59393-solved-sending-and-grabbing-two-varibles/#findComment-295051 Share on other sites More sharing options...
oceans Posted July 11, 2007 Author Share Posted July 11, 2007 Thanks Friend Link to comment https://forums.phpfreaks.com/topic/59393-solved-sending-and-grabbing-two-varibles/#findComment-295054 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.