i have successfully connected to my interbase database and have displayed
the results on a web page. my php code which displays the results is here:
<?php
while ($row = ibase_fetch_object ($result)) {
echo "<TR><TD align=left> $row->CLIENT </TD>";
echo "<TD align=left> $row->DBVERSION </TD>";
echo "<TD align=left> $row->POSTAHEAD </TD>";
echo "<TD align=left> $row->LASTUPDATED </TD>";
echo "<TD align=left> $row->INSTALLDATE </TD>";
echo "<TD align=left> $row->LIVEDATE </TD>";
echo "<TD align=left> $row->NOOFLICENCES </TD>";
echo "<TD align=left> $row->NOTES </TD></TR>";
}
ibase_free_result($result);
?>
What i want is for the results in the first column i.e. the CLIENT results
to take the form of links which when clicked will take the user to another
screen where the details of that particular row can be edited within a form. Been struggling for ages. Don't know where to start 🙁
any help much appreciated as i am a newbie.