<?php
$host = "localhost";
$user = "root";
$pass = "";
$db = "myfirstdb";
$connect = new mysqli($host,$user,$pass,$db);
if ($connect->connect_error){
die("Connection failed: " . $connect->connect_error);
}
$sql = "INSERT INTO table1 (First Name, Last Name, Phone, E-Mail, Date) VALUES ('Doe', 'John', '0722222222', '[email protected]', '22/10/2016 18:00')";
if ($connect->query($sql) === TRUE) {
echo "New record created successfully";
} else {
echo "Error: " . $sql . "<br>" . $connect->error;
}
$connect->close(); ?>
これは私のコードです。 phpmyadminで既に作成したデータベースにデータを追加することになっています。誰かが私を助けることができれば
PHPとMySQLサーバーのエラー
Error: INSERT INTO table1 (First Name, Last Name, Phone, E-Mail, Date) VALUES ('Doe', 'John', '0722222222', '[email protected]', '22/10/2016 18:00')
You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'Name, Last Name, Phone, E-Mail, Date) VALUES ('Doe', 'John', '0722222222', 'Doe_' at line 1
はそれは素晴らしいだろう:D
'ファーストネーム'は間違ったカラム名です –