I don´t know how to use forms with HTML + PHP.
I have the follow problem:
....
....
....
//code lines
....
....
echo "<tr>";
echo "<td align=left><font>Select the name </font></td>";
echo "<td><select name='nombreCafe'>";
while (ora_fetch($cursor)){
$i=0;
$valor=ora_getcolumn($cursor,$i);
echo "<option value='$valor' >$valor</option>";
}
echo "</select> ";
echo "</td>";
echo "</tr>";
echo $nombreCafe,"<br>";
...
...
...
I like to know what is the nombreCafe's value, all run pretty good, but echo line doesn´t print anything. I try with:
echo nombreCafe, "<br>";
echo("¡$nombreCafe!<BR>");
and I don´t see the value of nombreCafe's.
How can I get the value of nombreCafe?
Thanks for your answers.
Bye.