Thay đổi điều này -
// 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();
về điều này -
// insert a row
$stu_name = $_POST['stu_name'];
$stu_email = $_POST['stu_email'];
$stu_city = $_POST['stu_city'];
$stmt->execute();
Biểu mẫu của bạn sẽ đặt các giá trị trong mảng POST của PHP và bạn có thể truy cập chúng bằng thuộc tính name từ biểu mẫu.