[RESOLVED] Pass variable with url
im trying to use the following to pass the value id in a url within a report with now luck
Code:
<td><font size="1" face="Arial, Helvetica, sans-serif"><a href="http://www.usbdriveguard.com/UpdateTicketFromReport.php?id=<?php echo $id; ?>"<?php echo $id; ?></font></td>
i want the id which is the record number to be the link that sends its value to the UpdateTicketFromReport.php page. i cant seem to get this to work.
Re: Pass variable with url
Your HTML is wrong. You're missing the closing > as well as the end anchor tag. You have the right idea, though.
Code:
<td><font size="1" face="Arial, Helvetica, sans-serif"><a href="http://www.usbdriveguard.com/UpdateTicketFromReport.php?id=<?php echo $id; ?>"><?php echo $id; ?></a></font></td>
Re: Pass variable with url