Hi,
I have created a table on the fly from mysql
while($row = mysql_fetch_arr ay($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
I have created a table on the fly from mysql
while($row = mysql_fetch_arr ay($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
Comment