-1

我正在尝试创建一个表单,并且在该表单中有一个选择列表,其中选项自动填充数据库中的数据(即客户的姓氏),之后从列表中选择姓氏并且提交按钮是在数据库中点击与该姓氏相关的“客户 ID”将被提交到另一个 PHP 文件 (task8.php) 以通过进一步查询发送。我希望我已经以一种可以理解的方式解释了这一切。我已经尝试过一些代码,但我真的不确定如何做到这一点,或者我所写的内容是否正确。

这是我到目前为止所写的:

<body>

<?php
$conn = mysql_connect("localhost", "twa312", "dam6av9a");
mysql_select_db("warehouse312", $conn)
or die ('Database not found ' . mysql_error() );

$sql = "select customerID, lastName from customer";
$rs = mysql_query($sql, $conn)
or die ('Problem with query' . mysql_error());

$options= '<option value="0">Choose</option>';

while ($row=mysql_fetch_array($rs)) {
$id=$row["customerID"];
$name=$row["lastName"];
$options="<OPTION VALUE='" . $id . "'>" . $name ."</option>";
}

?>

<form method="GET" action="task8.php" id="custinfo" >

Choose name:<select name="lname" id="lname"><?php echo $options; ?>  
</select>

<p><input type="submit" name="submit" value="Save Data"/>&nbsp;<input type="reset" value="Clear Form" />

</form>

我试图用代码做的是访问表“客户”和字段“客户ID”和“姓氏”。使用客户的姓氏作为选项,使用客户的 ID 作为选择列表中的选项值。目前,当它应该显示数据库中的所有名称时,代码仅在选择列表中显示一个名称作为选项。对此的任何帮助都会非常好,因为我相当不确定。

4

2 回答 2

1

我可以看到代码中有一个错误会导致 PHP 生成通知错误。

while循环中,您正在使用尚未定义.=的变量,因此 PHP 会对此表示反对。$options

$_GET['submit']除此之外,对我来说,在从 mysql 迭代结果集之前等待设置是没有意义的。据我所知,您第一次点击此页面时,选择中会有一个选项(“选择”),并且由于表单提交到不同的页面,我认为您不会看到客户姓氏列表。

最后,真的不建议将提交按钮命名为“提交”,因为当浏览器解析页面时,特定表单的所有表单元素都被创建为该表单的属性,JS 表单对象有一个“提交”方法,所以当您将输入命名为“提交”时,您会在表单对象中破坏该值,这使得使用 JS 提交该表单非常困难。

于 2013-05-05T14:14:18.897 回答
1

首先远离mysql_functions。

其次,创建一个包含与您的客户相关的所有查询的模型,该模型将处理与您的客户数据库相关的数据的获取/放置/更新。

<?php 
Class CustomerModel{
    private $db;

    function __construct($host,$dbname,$user,$pass){
        $this->dbhost = $host;
        $this->dbname = $dbname;
        $this->dbuser = $user;
        $this->dbpass = $pass;
    }

    private function connect(){
        if (!$this->db instanceof PDO){
            $this->db = new PDO('mysql:dbname='.$this->dbname.';host='.$this->dbhost, $this->dbuser, $this->dbpass);
            $this->db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
            $this->db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false);
            $this->db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC);
        }
    }

    public function select_all_customer($cols="*"){
        $this->connect();
        $sql = "SELECT $cols FROM customer";
        $statement = $this->db->prepare($sql);
        $statement->execute();
        return $statement->fetchAll(PDO::FETCH_ASSOC);
    }

    public function select_customer($cols="*",$where=null, $id=null){
        $this->connect();
        $sql = "SELECT $cols FROM customer WHERE $where = :id";
        $statement = $this->db->prepare($sql);
        $statement->bindParam(':id', $id, PDO::PARAM_STR);
        $statement->execute();
        return $statement->fetchAll(PDO::FETCH_ASSOC);
    }

}
?>

现在您可以像这样访问模型:

<form method="POST" action="task8.php" id="custinfo" >
Choose name:
<select name="customerID" id="customerID">
    <option value="0">Choose</option>
    <?php foreach($customer->select_all_customer("customerID, lastName") as $row): ?>
      <option value="<?php echo $row['customerID']?>"><?php echo $row['lastName']?></option>
    <?php endforeach; ?>
</select>
<p><input type="submit" name="submit" value="Save Data"/>&nbsp;<input type="reset" value="Clear Form" />
</form>


<?php 
//Get customer from form values
if($_SERVER['REQUEST_METHOD'] == "POST" && isset($_POST['customerID'])){
    $result = $customer->select_customer("*", "customerID", $_POST['customerID']);
    //Do something with result
    echo '<pre>'.print_r($result, true).'</pre>';

}
?>

希望能帮助到你

于 2013-05-05T14:17:55.960 回答