Este es mi código:
consulta.php
Código:
Como véis el <input type=image src=images/delete.png name=delete> es una imagen de una papelera y que además de eso ese código hace una consulta a una base de datos con una tabla.<form name="form1" method="post" action="delete.php"> <div class="content"> <h1>Inscritos</h1><br> <?php include_once("config.php"); $result = mysql_query("SELECT SQL_CALC_FOUND_ROWS nick, email, clan, comentario FROM inscripciones", $link); if (mysql_num_rows($result)){ $result2 = mysql_query("SELECT FOUND_ROWS()", $link); list($total) = @mysql_fetch_array($result2); echo "<hr><table border = '0' width='100%' bgcolor=#212121> \n"; echo "<tr><td><strong>Nick</strong></td><td><strong>E-mail</strong></td><td><strong>Clan</strong></td><td><strong>Comentario</strong></td><td><strong> </strong></td></tr> \n"; while ($row = @mysql_fetch_array($result)) { echo "<tr><td>".$row["nick"]. "</td><td>".$row["email"]."</td></td><td>".$row["clan"]."</td></td><td>".$row["comentario"]."</td><td><input type=image src=images/delete.png name=delete></td></tr> \n"; } echo "</table> \n"; } else echo "¡ No se ha encontrado ningún registro !"; ?> </div> </form>
Este es el delete.php
delete.php
Código:
<?php include_once("config.php"); $result=mysql_query("DELETE FROM inscripciones SET = delete"); mysql_query($result); echo "<p>Los datos se han eliminado correctamente.</p>"; ?>