Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/11/2010, 09:47
Death_Empire
 
Fecha de Ingreso: febrero-2010
Mensajes: 818
Antigüedad: 14 años, 2 meses
Puntos: 55
Respuesta: [ayuda]borrar base de datos con php

Código PHP:
 <?php 
   
include("conex.php"); 
   
$link=Conectarse(); 
   
$id=$_GET['id']; 
   
$result mysql_query("DELETE FROM `animes` WHERE id = '$id' LIMIT 1");     
   
header("Location: master.php"); 
?>