How to Query from html output link
Posted: Sun Sep 23, 2007 10:50 pm
Query selects records, and one of the rows displayed is as follows.
I want to provide a link such as:
echo "<td>" . " " . "<a href=\"query-for-all-rows page.php\">" . " " . "Full Record Info" . " " . "</a>" . " " . "</td>";
utilizing the "$row['id']" data as the query critera, but not sure of the proper syntax?
Code: Select all
echo "<td>" . " " . $row['id'] ." " . "</td>"echo "<td>" . " " . "<a href=\"query-for-all-rows page.php\">" . " " . "Full Record Info" . " " . "</a>" . " " . "</td>";
utilizing the "$row['id']" data as the query critera, but not sure of the proper syntax?