-4

我将答案值发送到answer表中。我用下面的代码做到这一点。请看一下,让我知道我在哪里做错了,我是 php 新手。我想将问题编号和答案值添加到表中。

    <?php  
        //connects to database  
        $con = mysql_connect("localhost","root",""); 
        if (!$con)  
        {  
        die('Could not connect: ' . mysql_error());  
        }  
            mysql_select_db("appulentoweb", $con);  

        //retrieve data from database  
        $result = mysql_query("SELECT * FROM questions"); ?>
 <form action="questioned.php" method="post">
       <table>
           <tr>
              <th> QNo</th>
              <th> QTitle </th>
              <th> QAnswer </th>
           </tr>
        <?php 
        while($row=mysql_fetch_array($result))
        {
         ?>
         <tr>
            <td><?php echo $row['qid'];?></td>
            <td><?php echo $row['qdesc'];?></td>
            <td><input type="text" name="answervalue" /></td>
           </tr>
<?php  
$sql="INSERT INTO mobilestrgy (qno,response) VALUES ('$_POST[qid]','$_POST[answervalue]')";

?>
<?php } ?>
</table>

<input type="submit" value="Submit"/>

</form>

我想将数据提交到数据库。提前致谢。

4

2 回答 2

1
  • die不是一个很好的错误处理功能,没有人会因为错误而死...改用良好的错误处理,例如:http: //github.com/WouterJ/sql-boilerplate/tree/mysql/
  • 使用mysql_fetch_assoc代替mysql_fetch_array
  • 你在哪里检查查询是否成功?
  • 用于mysql_num_rows检查查询是否返回结果
  • 不要将变量放在引号内。使用点运算符:http: //php.net/operators.string
  • 究竟出了什么问题?你有任何错误吗?你的数据库设计是什么?
  • 你认为问题出在哪里?在你在这里问之前你做了什么?(例如在谷歌上搜索)
于 2012-07-18T12:03:56.487 回答
0

您正在学习,您至少需要 2 个文件,一个带有 HTML 代码,另一个带有 PHP 代码。当你点击提交 HTML 时,它会将数据发送到服务器,PHP 文件将接收它,并将其插入数据库,看看这个例子

html页面

<html>
<body>

<form action="insert.php" method="post">
Firstname: <input type="text" name="firstname" />
Lastname: <input type="text" name="lastname" />
Age: <input type="text" name="age" />
<input type="submit" />
</form>

</body>
</html> 

.php 文件:

<?php
$con = mysql_connect("localhost","peter","abc123");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("my_db", $con);

$sql="INSERT INTO Persons (FirstName, LastName, Age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";

if (!mysql_query($sql,$con))
  {
  die('Error: ' . mysql_error());
  }
echo "1 record added";

mysql_close($con);
?> 

我从这里拿了这个。

请查看这个非常基本的教程,但会帮助您理解

于 2012-07-18T12:06:09.993 回答