I need some help with a problem I'm doing.
It's simple.
I have this code.
while ($ row = mysql_fetch_array ($ resultadosql))
{
echo ("<tr> <td>" $ row ["id"] "</ td>"..);
echo ("<td> <a href='themedisplay.php?id=" $row["id"] "'> edit </a> </ td>..");
the second is a link in another column to another window to edit the inserted data.
What I want to change the link "edit" to variable id, in other words to put the last echo inside this.
echo ("<tr> <td>" $ row ["id"] "</ td>"..);
That the id showed is the link to the editing window.
Thanks for the help.