使用php从mysql表编辑数据

时间:2014-10-31 10:58:21

标签: php mysql

我从表中检索了数据并使用下面的代码显示它们。

<?php require_once('../Connections/bidco.php'); ?>
<body>
<table width="671" height="43" border="1" align="center">
<table width="781" height="190" align="center">
    <tr>
      <td height="61" colspan="4"><div align="center"><strong> Inventory </strong></div></td>
    </tr>
    <tr>
      <td width="77" height="68"><strong>ID</strong></td>
      <td width="152"><strong>Item name.</strong> </td>
      <td width="253"><strong>unit price</strong> </td>

      <td width="253"><strong>Update price</strong></td>

    </tr>
<?php
$query=mysql_query("SELECT *FROM manuf ") or die (mysql_error());
while($row=mysql_fetch_array($query))
{
 $id=$row['id'];
?>
 <tr>
      <td><?php echo $row['id']; ?></td>
      <td><?php echo $row['itemname']; ?></td>
    <td><?php echo $row['unitprice']; ?></td>

      <td><a href="change.php">change</a></td>


 </tr>
 <?php

}
?>
</table>
</body>
</html>

现在这个PHP代码应该允许我编辑当我点击“更改”时显示的各个行但是它没有选择行。任何想法如何解决这个问题?

<?php require_once('../Connections/bidco.php'); ?>
<?php   

        $id = isset($_GET['id']) ? $_GET['id'] : null;


        $query=mysql_query("SELECT * FROM manuf where id='$id' ")or die(mysql_error());
        $row=mysql_fetch_array($query);

        ?>

<form action="updateprice.php" method="post" enctype="multipart/form-data">
  <table align="center">
    <tr>
   <td> <label><strong>Item Name</strong></label></td>
     <td> <input type='text' name='itemname' value=" <?php echo $row['itemname']; ?>"  />
      <input type="hidden" name="id" value="<?php echo $id; ?> " /> <br /></td>
    </tr>
    <tr>

     <td><label><strong>Unit price </strong></label></td>
  <td> <input type="text" name="unitprice" value="<?php echo $row['unitprice']; ?> " /><br /></td>
  </tr>

    <tr>
  <td> 
          <input type="reset" name="Reset" value="CANCEL" />
      <br></td>


     <td> 
          <input type="submit" name="Submit2" value="Update" />      </td>
   </tr>
</table>
</form>
</body>
</html>

提前谢谢

4 个答案:

答案 0 :(得分:2)

您忘记将id添加到链接

<td><a href="change.php?id=<?php echo $row['id']?>">change</a></td>

答案 1 :(得分:1)

我认为你需要

<a href="change.php?id=$row['id']">

编辑 - 使用Arif_suhail_123的答案 - 我没注意到你把PHP混入了HTML

答案 2 :(得分:0)

您需要将rowid传递给Edit Link的href。

<td><a href="change.php?id=<?php echo $row['id']; ?>">change</a></td>

答案 3 :(得分:0)

您正在寻找id中的change.php,但您并未在标题中发送该内容。您必须使用

更改change
<a href="change.php?id=<?php echo $row['id']; ?>">change</a>

此外,我建议您停止使用mysql_*命令,因为它们是Depreceted,并且将不再受支持。改为使用mysqli_*命令。