<?php
if (trim($_POST['パスワード']) != trim($_POST['repassword'])) {
exit('twiceパスワードが一致しません。前のページに戻ってください');
}
$username = trim($_POST['username']);
$password = md5 (trim ($_POST['password']));
$time = time();
$ip = $_SERVER['REMOTE_ADDR'];
$ conn = mysqli_connect('localhost', 'root', 'root');
//エラーがある場合はエラー番号
if (mysqli_errno($conn)) {
echo mysqli_error ($conn);
exit;
}
mysqli_select_db($conn, 'text');
mysqli_set_charset($conn, 'utf8');
$sql = "user(username,password,createtime,createip) に挿入 value('" . $username . "','" . $password . "','" . $time . "', '" . $ip . "')";
$result = mysqli_query($conn, $sql);
if ($result) {
echo 'success';
} else {
echo 'failed';
}
echo '現在のユーザーによって挿入された ID は' . mysqli_insert_id($conn);
mysqli_close( $conn);
?>
路过2017-10-23 13:10:43
SQL ステートメントがデータベース フィールドに対応するかどうか
SQL ステートメント内のフィールドの問題
$sql = "insert into user(`username`,`password`,`createtime`,`createip) `) 値 ('" . $username . "','" . $password . "','" . $time . "','" . $ip . "')";