0

尝试将一些值插入 MySQL 数据库时出现错误 - 我的页面当前读取通过 URL 传递的值“EventID”,并允许我根据该 EventID 添加结果。我目前有一个下拉框,由成员表中的成员填充。
我收到这个可怕的错误:

无法添加或更新子行:外键约束失败 ( clubresults. results, CONSTRAINT ResultEventFOREIGN KEY ( EventID) REFERENCES events( EventID) ON DELETE CASCADE)

我无法更改表结构,因此将不胜感激。注意 - 我目前正在让它回显 SQL 以查找关于它为什么不会插入的错误。

<?php

error_reporting (E_ALL ^ E_NOTICE); 
$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("clubresults", $con);

   // Get id from URL
    $id = mysql_real_escape_string($_GET['EventID']);

    // If id is number
    if ($id > 0) 
    {
         // Get record from database
         $sql = "
            SELECT EventID
            FROM results 
            WHERE EventID = " . $id;
         $result = mysql_query($sql); 
         }
if (isset($_POST['submit'])) {       
  $sql="INSERT INTO results (MemberID, Score, Place)
VALUES
('".$_POST['student']."', '".$_POST['Score']."', '".$_POST['Place']."')";

$add_event = mysql_query($sql) or die(mysql_error());;

echo $add_event;
}

HTML 表单 -

$_SERVER['PHP_SELF']?>" method="post"> 
                        <table border="0"><p>
                        <tr><td colspan=2></td></tr>
                        <tr><td>Member Name: </td><td>
                        <?php
                        $query="SELECT * FROM members";

/* You can add order by clause to the sql statement if the names are to be displayed in alphabetical order */

$result = mysql_query ($query);
echo "<select name=student value=''>Student Name</option>";
// printing the list box select command

while($nt=mysql_fetch_array($result)){//Array or records stored in $nt
echo "<option value='$nt[MemberID]'>$nt[Firstname] $nt[Surname]</option>";
/* Option values are added by looping through the array */
}
echo "</select>";// Closing of list box 
?>

                        <tr><td>Score:</td><td> 
                        <input type="text" name="Score" maxlength="10"> 
                        <tr><td>Place:</td><td> 
                        <input type="text" name="Place" maxlength="10"> 
                        </td></tr> 
                        <tr><th colspan=2><input type="submit" name="submit" 
                        value="Add Result"> </th></tr> </table>
                        </form>
4

1 回答 1

2

您必须将 插入EventID到您的results记录中:

$sql="INSERT INTO results (MemberID, Score, Place, EventID) VALUES (?, ?, ?, ?)";

注意我已经使用?占位符代替你的$_POST变量(这让你容易受到SQL 注入的攻击)。

您应该使用准备好的语句,将变量作为参数传递到其中,这些参数不会为 SQL 评估,但它们在您正在使用的古老 MySQL 扩展中不可用(无论如何社区已经开始弃用,所以你真的应该停止用它编写新代码);改用改进的MySQLi扩展或PDO抽象层。

于 2012-05-29T01:58:53.043 回答