Salve ragazzi ho 1 pagina dove grazie al while prendo ogni prodotto del db presente in 1 determinata tabella del db e lo stampo in dei form(appunto creati grazie al while ecc) e vicino a ogni 10 form(1 ogetto ) c'e il bottone per l'invio dei dati a edit.php
edit php è cosi fatta:
Codice PHP:
<?php
$user = "";
$pwd = ""; // qui la tua password
$host = "localhost";
$dbase = "";
$db = mysql_connect ($host, $user, $pwd) or die
("Impossibile connettersi al database!");
mysql_select_db ($dbase);
$testo1 = $_POST['testo1'];
$testo2 = $_POST['testo2'];
$testo3 = $_POST['testo3'];
$testo4 = $_POST['testo4'];
$testo5 = $_POST['testo5'];
$testo6 = $_POST['testo6'];
$testo7 = $_POST['testo7'];
$testo8 = $_POST['testo8'];
$testo9 = $_POST['testo9'];
$username = $_POST['username'];
if ($_POST['submit'] == 'Invia') {
$sql= "UPDATE Mercato SET testo1='".$testo1."', testo2='".$testo2."', testo3='".$testo3."', testo4='".$testo4."', testo5='".$testo5."', testo6='".$testo6."', testo7='".$testo7."', testo8='".$testo8."', testo9='".$testo9."' WHERE username = '".$username."'";
$result = mysql_query($sql)or die(mysql_error());
if($result){
echo "inserimento avvenuto";
}
}
?>
non mi da errori però mi stampa pagina bianca e non mi modifica dati nel db
aiuto pls