Salve a tutti sono nuovo del forum ed ho un problema sicuramente dato dalla mia inesperienza in php.
Non riesco a mettere il risultato di una query in una selectbox o meglio in php funziona ma non riesco a stamparla su html questo il codice
Non riesco a mettere il risultato di una query in una selectbox o meglio in php funziona ma non riesco a stamparla su html questo il codice
PHP:
<?
//$nome = $_POST['nome'];
$importo = str_replace(',','.',$_POST['importo']);
//echo "$nome";
//echo "$importo";
include_once ("config.php");
include_once ("connect.php");
// Get all the data from the "example" table
$result = mysql_query("SELECT * FROM clienti_schede ORDER BY data DESC")
or die(mysql_error());
echo "<select name=\"select\">";
while ($res = mysql_fetch_array($result)){
echo "<option value=\"".$res['id']."\">".$res['nome']."</option>";
}
echo "</select>";
?>
PHP:
</style></head>
<body>
<table border="0">
<tr>
<td width="902" align="center" class="style2">Se i dati sono esatti premere sent Oppure modificare e premere sent </td>
</tr>
<tr>
<td height="254">
<table width="905" bordercolor="#CC0000" bgcolor="#00CC00">
<form method="post" action="invio_prova_chekbox.php">
<tr>
<td width="104" height="52">Nome</td>
<td width="789"><label>
<select name="select" id="select">
<OPTION value="<?php echo .$res['nome'].;?>"</OPTION>
</select>
</label>
</td>
</tr>
<tr>
<td height="24"><span class="style1">Importo</span></td>
<td><input type="text" value= "<?php echo "$importo";?>" name="importo" size="20"> </td>
</tr>
<tr>
<td height="26"></td>
<td align="right">
<input type="checkbox" name="cinema" value="cinema"/>
Cinema
<input type="checkbox" name="musica" value="musica"/>
Musica
<input type="checkbox" name="sport" value="sport"/>
Sport
<input type="submit" name="submit" value="Sent"></td>
</tr>
</form>
</table>
</td>
</tr>
</table>
</body>
</html>
Ultima modifica di un moderatore: