dongxing8009 2017-06-23 09:37
浏览 39
已采纳

PHP无法从表中删除记录

I am trying to delete the record from the vaccinedetail table, i've tried to run the delete statement in phpmyadmin and it ran perfectly. But when i tried the delete statement in my code, it wont delete the record.Any idea??

<?php
include('connect-db.php');

if (isset($_GET['id']) && is_numeric($_GET['id']))
{
    $id = $_GET['id'];
    $result = mysql_query("DELETE FROM vaccinedetail WHERE id=$id") or die(mysql_error());
    header("Location: start.php");
}
else
{
    header("Location: displaytype.php");
}
?>   

.

<table border='1' cellpadding='10'>
    <tr>
        <th>ID</th>
        <th>Vaccine ID</th>
        <th>疫苗名稱 (繁體)</th>
        <th>疫苗名称 (简体)</th>
        <th>Vaccine Name (Eng)</th>
        <th>Total no of injection</th>
        <th>Nth Injection</th>
        <th>Next Injection Skip</th>
        <th></th>
    </tr>

<?php
include('connect-db.php');

$result = mysql_query("SELECT vaccinedetail.id,vaccinedetail.vaccineid,vaccinedetail.vaccinename1,vaccinedetail.vaccinename2,vaccinedetail.vaccinename3, vaccinedetail.totalnoofinjection,vaccinedetail.nthinjection,vaccinedetail.skip FROM vaccinedetail WHERE vaccinedetail.vaccineid = '" . $_POST['vaccineid'] . "'") or die(mysql_error()); 
// ^^^ show the specifc type of vaccine taht match the vaccine type in the typeserach.php
?>

<?php
while($row = mysql_fetch_array( $result )) {
?>

    <tr>
        <td><input type="text" name = "id[]" value="<?php echo $row['id'] ?>"</td>
        <td><input type="text" name = "vaccineid[]" value="<?php echo $row['vaccineid'] ?>"</td>
        <td><input type="text" name = "vaccinename1[]" value="<?php echo $row['vaccinename1'] ?>"</td>
        <td><input type="text" name = "vaccinename2[]" value="<?php echo $row['vaccinename2'] ?>"</td>
        <td><input type="text" name = "vaccinename3[]" value="<?php echo $row['vaccinename3'] ?>"</td>
        <td><input type="text" name = "totalnoofinjection[]" value="<?php echo $row['totalnoofinjection'] ?>"</td>
        <td><input type="text" name = "nthinjection[]" value="<?php echo $row['nthinjection'] ?>"</td>
        <td><input type="text" name = "skip[]" value="<?php echo $row['skip'] ?>"</td>

        <!--<td><a href="editdisplaytype.php?id=' . $row['id'] . '"><img src="edit.png" width="20px"></a>-->
        <td><a href="deletedisplaytype.php?id=' . $row['id'] . '"><img src="delete.jpg" width="20px"></a></td>
    </tr>
<?php
}
?>
</table>
  • 写回答

2条回答 默认 最新

  • dongshan4549 2017-06-23 09:44
    关注

    You are not passing id correctly on url.

    NOTE: Please don't use mysql_, they are deprecated. Use mysqli_ or PDO.

    Change:

    <td><a href="deletedisplaytype.php?id=' . $row['id'] . '"><img src="delete.jpg" width="20px"></a></td>
    

    To:

    <td><a href="deletedisplaytype.php?id=<?php echo $row['id'];?>"><img src="delete.jpg" width="20px"></a></td>
    

    Otherwise, code looks correct.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。