Hi,
I have a instruction line href like this
<TD><a href=\"resultatdetal1.php?
id1={$row['titre']}\"
<p align='center'><img border='0' src=\"gauche.jpg\" width='57' height='33'></p></a></TD>\n");
that brings the result of $row['titre'] to my resultatdetal1.php without pb. For printing like
echo "$id1<br>";
I'll would take more than one result from the same page to resultatdetal1.php as well like
<TD><a href=\"resultatdetal1.php?
id1={$row['titre']}id2={$row['genre']}\"
<p align='center'><img border='0' src=\"gauche.jpg\" width='57' height='33'></p></a></TD>\n");
For printing it like
echo "$id1<br>";
echo "$id2";
but the result is like this (ex.)
blabla1id2=blbla2
what is missing for having a result like
blabla1
blabla2