Posted by c19h28o2 on 06/08/07 20:54
Hi,
I have created a table on the fly from mysql
while($row = mysql_fetch_array($query)) {
echo "<tr>";
echo "<td class='body'><a href='#'>".$row['au_id']."</a></td>";
echo "<td class='body'>".$row['au_fname']."</td>";
echo "<td class='body'>".$row['au_lname']."</td>";
echo "</tr>";
}
is there anyway of getting the current clicked au_id? i would like the
user to click the id to display more information but I'm unsure how to
get the currently clicked id...
Thanks
Navigation:
[Reply to this message]
|