phpMyAdmin
 sql >> Database >  >> Database Tools >> phpMyAdmin

Come scrivere informazioni dal modulo html al database MySQL

Usa mysqli . Ho invece modificato il tuo codice per preparare l'inserto.

Se non lo facessi, sarebbe una grande festa di SQL injection.

Inoltre, per accedere a $_POST , dovresti fornire un indice di stringa, come $_POST['firstname'] . Anche se funziona come $_POST[firstname] , PHP emetterà un avviso.

<?php
$mysql_host     = "localhost";
$mysql_username = "username";
$mysql_password = "password";
$mysql_database = "database";

$mysqli  = new Mysqli($mysql_host, $mysql_username, $mysql_password, $mysql_database);
$prepare = $mysqli->prepare("INSERT INTO `Information`(`Firstname`,`Lastname`,`Email`,`StreetAddress`,`PostalCode`,`City`,`StateProvince`,`Country`,`Controllers`,`Color`) VALUES (?,?,?,?,?,?,?,?,?,?)");
$prepare->bind_param("ssssssssss", $_POST['firstname'], $_POST['lastname'], $_POST['email'], $_POST['streetaddress'], $_POST['postalcode'], $_POST['city'], $_POST['state'], $_POST['country'], $_POST['controllers'], $_POST['color']);
$prepare->execute();
$mysqli->close();
?>