Mysql
 sql >> Database >  >> RDS >> Mysql

Inserimento dati da form in Database PDO

Cambia questo -

// insert a row
$stu_name = "Joe";
$stu_email = "[email protected]";
$stu_city = "Joeland";
$stmt->execute();

// insert another row
$stu_name = "Mary";
$stu_email = "[email protected]";
$stu_city = "Maryland";
$stmt->execute();

a questo -

// insert a row
$stu_name = $_POST['stu_name'];
$stu_email = $_POST['stu_email'];
$stu_city = $_POST['stu_city'];
$stmt->execute();

Il tuo modulo collocherà i valori nell'array POST di PHP e potrai accedervi tramite la proprietà name dal modulo.