I am wondering if this is possible:
I have a web page that displays a table which includes Work Order Numbers. I would like to make the numbers into a link that when I click it it automatically brings up an edit form for that particular record. For example, here is some code for the table:
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['WO'] . "</td>";
echo "<td>" . $row['Customer'] . "</td>";
echo "<td>" . $row['Status'] . "</td>";
echo "<td align=\"center\">" . $row['Entered'] . "</td>";
echo "<td>" . $row['Description'] . "</td>";
echo "</tr>";
}
echo "</table>";
Now, in the echo "<td>" . $row . "</td>"; line I would like something like:
echo "<td><a> " . $row . " </a></td>";
so that if I click the WO number it will search for that particular record and bring up a form where I can edit it. I just have no idea what code to put within the <a></a> tags to make this possible or if it is even possible. Another way that might work for me would be to put an edit button in each row.