mauro.edgar Posted June 23, 2006 at 01:20 PM Report Share #34411 Posted June 23, 2006 at 01:20 PM Boas Tenho o seguinte problema. Tenho uma página a ir buscar os valores à base de dados com o código seguinte: <table border="1" width="743">'; while($rows = mysql_fetch_array($results)) { extract ($rows); echo' <tr> <td width="37">'; echo $id; echo'</td> <td width="321">'; echo $nome; echo'</td> <td width="275">'; echo $b_identidade; echo'</td> <td width="22"><p align="center"><img border="0" src="visualizar.gif" width="17" height="16"></td> <td width="24"><p align="center"><img border="0" src="print.gif" width="17" height="16"></td> <td width="24"><p align="center"> <a href="apagaresidencia.php"><img border="0" src="eliminar.gif" width="17" height="16"></a></td>'; } </tr> Como podem ver, quando clico na imagem de eliminar o registo, tem um link para apagaresidencia.php Acontece o seguinte os dados estão nome mas a 1ª coluna é o campo ID (AutoIncrement) e por exemplo tenho 3 registos um com ID=43,45,46 e ao clicar no botão da linha do ID=43 ele apaga sempre o último registo(ID=46).... No ficheiro apagaresidencia.php tenho o seguinte código: <?php session_start(); $nid = isset($_POST['id']) ? $_POST['id'] : $_SESSION['id']; $delete = "DELETE FROM residencia WHERE id = $nid" $results = mysql_query($delete) or die(mysql_error()); ?> Acho que me falta alguma coisa para atribuir o ID à linha que quero eliminar, mas não sei como...Se alguém souber ajudar, agradecia. Abraço Link to comment Share on other sites More sharing options...
kingless Posted June 23, 2006 at 02:07 PM Report Share #34423 Posted June 23, 2006 at 02:07 PM Não podes colocar só $id ou $nome .. tens de colocar $rows['id'] $rows['nome'] .... Porque os resultados estão no array $rows que executaste o query.... tem que ficar assim: echo '<table border="1" width="743">'; while($rows = mysql_fetch_array($results)) { echo' <tr> <td width="37">'; echo $rows['id']; echo'</td> <td width="321">'; echo $rows['nome']; echo'</td> <td width="275">'; echo $rows['b_identidade']; echo'</td> <td width="22"><p align="center"><img border="0" src="visualizar.gif" width="17" height="16"></td> <td width="24"><p align="center"><img border="0" src="print.gif" width="17" height="16"></td> <td width="24"><p align="center"> <a href="apagaresidencia.php"><img border="0" src="eliminar.gif" width="17" height="16"></a></td>'; } echo '</tr>'; Assim já funciona!! 😉 Link to comment Share on other sites More sharing options...
mauro.edgar Posted June 23, 2006 at 03:20 PM Author Report Share #34441 Posted June 23, 2006 at 03:20 PM Obrigado, vou experimentar. Mas olha uma coisa, o outro código que tenho aki na parte do delete está correcta???? Abraço Link to comment Share on other sites More sharing options...
kingless Posted June 23, 2006 at 04:14 PM Report Share #34450 Posted June 23, 2006 at 04:14 PM Sim está!! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now