Ciao a tutti sono nuovo in questo forum e sono "nuovo" nel php!! ecco il mio problema:
ho creato un form che invia dati alla tab1 di un db( nome, cognome, email etc), poi ho creato la select per tirare fuori i dati ( fino qui tutto bene ), al ciclo while che estrapola i dati ho aggiunto un campo checkbox da spuntare con valore = id della tab1...
posto il codice:
ora vorrei aggiungere alla 2a tab dello stesso db solo le email con la casella checkbox spuntata!!! ma non so come fare.. il db creato ha Engine =INNODB (nn so se può essere utile).
Grazie in anticipo
:crying:
ho creato un form che invia dati alla tab1 di un db( nome, cognome, email etc), poi ho creato la select per tirare fuori i dati ( fino qui tutto bene ), al ciclo while che estrapola i dati ho aggiunto un campo checkbox da spuntare con valore = id della tab1...
posto il codice:
echo <<<tab
<table class="db">
<tr>
<th width="20px">N.</th>
<th width="168px">nome</th>
<th width="168px">cognome</th>
<th width="80px">telefono</th>
<th width="60px">cellulare</th>
<th width="150px">email</th>
<th width="20px">sel.</th>
</tr>
</table>
tab;
while (($row_data = @$result->fetch_assoc())!== NULL)
echo <<<blocco
<table>
<tr>
<td width="20px" align="center"> {$row_data['tessera']} </td>
<td width="168px"> {$row_data['nome']} </td>
<td width="168px">{$row_data['cognome']}</td>
<td width="80px" align="center">{$row_data['telefono']}</td>
<td width="60px" align="center">{$row_data['cellulare']}</td>
<td width="150px" align="center">{$row_data['email']}</td>
<td width="20px"> <input type="checkbox" name="selezione" value="{$row_data['id']}" /></td>
</tr>
</table>
blocco;
ora vorrei aggiungere alla 2a tab dello stesso db solo le email con la casella checkbox spuntata!!! ma non so come fare.. il db creato ha Engine =INNODB (nn so se può essere utile).
Grazie in anticipo
:crying: