PHP给我一个错误未定义的变量

时间:2017-05-01 19:09:11

标签: php mysql

拜托,这里的任何人都可以帮助我吗?即时工作在管理页面我创建一个删除表格的按钮  这是我删除的代码

 <?php //On affiche les lignes du tableau une à une à l'aide d'une boucle
        while($donnees = mysql_fetch_array($reponse))
        {
        ?>

            <tr>
                <td><?php echo $donnees['id'];?></td>
                <td><?php echo $donnees['Nom'];?></td>
                <td><?php echo $donnees['Datee'];?></td>
                <td><?php echo $donnees['Lieu'];?></td>
                <td><?php echo $donnees['Prix'];?></td>
             <td><a href="DELETE_billet.php?id=<? echo $donnees['id']; ?>">
            <img src='delete.png' alt='supprimer' width="7" /></a></td>

            <td><a href="update_billet.php?id=<? echo $donnees['id']; ?>">
            <img src='update.jpg' alt='apdate' width="7" /></a></td>
  </tr>




        <?php
         //fin de la boucle, le tableau contient toute la BDD
    }mysql_close(); //deconnection de mysql
        ?>

以下是错误的屏幕截图: enter image description here

这是错误this is the error

这里我定义了id

{{1}}

0 个答案:

没有答案