0

私はmysqlテーブルにデータを追加するphpスクリプトに取り組んでいます.4つのフィールドがあり、そのすべてが必要です.phpブックからコードをコピーしていくつかの変更を加えたので、コードの大部分は正しいと思います.特定のスクリプトで探していたものを反映していますが、送信機能をテストすると、成功/エラーメッセージではなく白い画面が表示され、ここからどこに行くべきか少し困惑しています. 以下は私のコードのコピーです。

<html>
<head>
</head>
<body>
<?php

if ($_SERVER['REQUEST_METHOD'] == 'POST') {
//input validation all required
if (!empty($_POST['airport_name'])) {
$an = trim($_POST['airport_name']);
if (!empty($_POST['airport_code'])){
$ac = trim($_POST['airport_code']);
if (!empty($_POST['airport_lat'])){
$alat = trim($_POST['airport_lat']);
if (!empty($_POST['airport_long'])){
$along = trim($_POST['airport_long']);

//if (!empty($_POST['airport_name'])){

//$an  = trip($_POST['airport_name']);


require('/../mysqli_connect.php');
$q = 'INSERT INTO airports (airport_name, airport_code, airport_lat, airport_long) VALUES (?, ?, ?, ?)';
$stmt = mysqli_prepare($dbc, $q);
mysqli_stmt_bind_param($stmt, 'ssss', $an, $ac, $alat, $along);
mysqli_stmt_execute($stmt);

if (mysqli_stmt_affected_rows($stmt) == 1) {
  echo '<p>The airport has been added!</p>';
  $_POST = array();
} else {
  $error = 'The new airport could not be added to the database!';
}
mysqli_stmt_close($stmt);
mysqli_close($dbc);




} //if airport lat
   else{
     $error = 'Please enter airport lat';
   }
}   //if airport lat
else{
  $error = 'Please enter airport latitude';
}
}  //if airport code
else {
  $error = 'Please enter an airport code';
}
}  //if airport name
else {
  $error = 'Please enter an airport name';
}
} // end of submission if
if (isset($error)) {
  echo '<h1>Error!</h1>
  <p stlye="font-weight: bold; color: #COO">'. $error . 'Please try again</p>';
}

?>
<h1>Add Airport</h1>
<form action="add_apt.php" method="post">
<fieldset><legend>Fill out the for to and and airpot:</legend>
<p><b>Airport Name:</b><input type="text" name="airport_name" size="10" value="<?php if (isset($_POST['airport_name'])) echo $_POST['airport_name']; ?>"/></p>
<p><b>Airport Code:</b><input type="text" name="airport_code" size="4" maxlegnth="4" value="<?php if (isset($_POST['airport_code'])) echo $_POST['airport_code']; ?>"/></p>
<p><b>Airport Lat:</b><input type="text" name="airport_lat" size="10" maxlegnth="40" value="<?php if (isset($_POST['airport_lat'])) echo $_POST['airport_lat']; ?>"/></p>
<p><b>Airport Long:</b><input type="text" name="airport_long" size="10" maxlegnth="40" value="<?php if (isset($_POST['airport_long'])) echo $_POST['airport_Long']; ?>"/></p>
</fieldset>
<div align="center"><input type="submit" name="submit" Value="Add Airport"/></div>
</form>
</body>
</html>

エラーを有効にしたときに発生するエラーは次のとおりです

警告: mysqli_stmt_bind_param() は、パラメーター 1 が mysqli_stmt であることを想定しています。30 行目の /home5/virtua15/public_html/gatewayaviation/add_apt.php で null が指定されています。

警告: mysqli_stmt_execute() は、パラメーター 1 が mysqli_stmt であることを想定しています。31 行目の /home5/virtua15/public_html/gatewayaviation/add_apt.php で null が指定されています。

警告: mysqli_stmt_affected_rows() は、パラメーター 1 が mysqli_stmt であることを予期します。33 行目の /home5/virtua15/public_html/gatewayaviation/add_apt.php で指定された null です。

警告: mysqli_stmt_close() は、パラメーター 1 が mysqli_stmt であることを想定しています。39 行目の /home5/virtua15/public_html/gatewayaviation/add_apt.php で指定された null です。

警告: mysqli_close() は、パラメーター 1 が mysqli であることを想定しています。40 行目の /home5/virtua15/public_html/gatewayaviation/add_apt.php で指定された null です。

mysqli_connect.php スクリプト

<?php

DEFINE ('DB_USER', '******_******');
DEFINE ('DB_PASSWORD', '*******');
DEFINE ('DB_HOST', 'localhost');
DEFINE ('DB_NAME', '******_gateway');

$dbc = @mysqli_connect (DB_HOST, DB_USER, DB_PASSWORD, DB_NAME) OR die ('Could not connect to MySQL: ' . mysqli_connect_error() );

mysqli_set_charset($dbc, 'utf8');
 ?>
4

1 に答える 1

1

display_errors を使用しなくても、エラーを見つける簡単な方法があります。クエリを作成して実行するスクリプトの部分で、次のように変更する必要があります。

if ($stmt = mysqli_prepare($dbc, $q)) {
    mysqli_stmt_bind_param($stmt, 'ssss', $an, $ac, $alat, $along);
    mysqli_stmt_execute($stmt);

    if (mysqli_stmt_affected_rows($stmt) == 1) {
        echo '<p>The airport has been added!</p>';
        $_POST = array();
    } else {
        $error = 'The new airport could not be added to the database!';
    }
    mysqli_stmt_close($stmt);
    mysqli_close($dbc);
}
else {
    echo '<p>'.mysqli_error($dbc).'</p>';
}

これにより、クエリで発生している MySQL エラーを取得できます。この場合、生成されるエラーは次のとおりです。

Column count doesn't match value count at row 1

コードをよく見ると、このエラーは 4 つのフィールドを追加しようとしているために発生して(airport_name, airport_code, airport_lat, airport_long)いますが、SQL ステートメント(?, ?, ?, ?, ?)に 5 つのプレースホルダーがあるため、プレースホルダーの 1 つを削除すると機能するようになります。

編集:質問とこの回答のコメントに応じて、接続ファイルがメインスクリプトに正しく含まれていることも確認してください。

于 2012-07-19T08:40:40.197 に答える