php - passing two variables to another page
Posted: Tue Dec 06, 2011 7:34 pm
Hi everyone,
i can pass 1 variable to another page successfully, but now i need to pass 2 variables and i can't seem to identify where the problem is in the below line of code. Does anyone have any ideas?
i can pass 1 variable to another page successfully, but now i need to pass 2 variables and i can't seem to identify where the problem is in the below line of code. Does anyone have any ideas?
Code: Select all
<?php
echo '<td nowrap><a href="page2.php?id=' . $result['id'] .'&Email='. $result['email']' " > '. $result['email'].' </a></td>';
?>