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

SQL - Inserisci il modulo in un database

È necessario assegnare valori prima di poterli utilizzare come indicato di seguito:

$firstname = $_POST['firstname'];
$comment = $_POST['comment'];
$sql = $conn->prepare("INSERT INTO Comments (Name, Comment) VALUES (?, ?)");
$stmt->bind_param("sss", $firstname, $comment);