So I received awesome help from here before but forgot to ask at the time about one small thing. He taught me how to exclude my "ID" field displaying and about the implode function in PHP but if I display my data using it is there a way to make the "link" column hyperlinks(for each link listed in the table)?
Here is the code as of right now:
echo "<form action='editpayees.php' method='post'>";
if( mysql_num_rows($query) > 0)
{
$row=mysql_fetch_assoc($query);
do{
//save the value of id
$id=$row['ID'];
//"erase" ID from $row
unset($row['ID']);
//implode will "join" all the $row elements using '</td><td>' as the 'glue'
echo '<tr id="data"><td>'.implode('</td><td>',$row).'</td><td style="border: medium none;"><input type="checkbox" name="edit'.$id.'" value="1" /> Edit</td></tr>';
}while($row=mysql_fetch_assoc($query));
}
And before I would just have done something like:
echo '<a href="fieldname["web"]">fieldname["web"]</a>';
New to PHP/mySQL, but I understand things well when they are explained so any helpful hints to make what I'm trying to accomplish easier would really help, thanks.