😕
I've buid my tables with mysql, fild them up and can call information from it with the ROW commander.
There is also no problem for printing it on the screen.
What I want to do is after printing the table to select a line in this table for taken the information to inject it into a formulair for make some changes in this information.
Like it is a WHILE buckle I want to put at the end of every line a select button for select this line and take the information to my formulair page.
After including my button mysql gives me an error that he can't read this line.
Why?
print("<TABLE border=\"1\">");
print("<TR><TD colspan=\"10\"><B>Resultat de la recherche : </B></TD>");
print("<TR><TD>Titre</TD><TD>album</TD><TD>Auteur</TD>
<TD>Genre</TD><TD>Description</TD>
<TD>Ecouter ou Clic-droit</TD>
<TD>Selection</TD></TD>");
while ($row = mysql_fetch_array($Resultat,MYSQL_ASSOC))
{
print("<TR><TD>{$row["titre"]}</TD><TD>{$row["titrealbum"]}</TD><TD>{$row["nom"]}</TD><TD>{$row["genre"]}</TD><TD>{$row["nomdescription"]}</TD>
<TD><a href='{$row["chemin"]}'><p align='center'><img border='0' src='NoteMusique.gif' width='13' height='16'></p></a></TD>
<TD><p align='center'><img border='0' src="gauche.jpg" width='57' height='33'>
</p></TD>\n");
}
print("</TABLE>");