Autor Tema: Borrar registro de la base de datos  (Leído 643 veces)

Desconectado kalash

  • PHPerit@
  • *
  • Mensajes: 32
  • Karma: 0
    • Ver Perfil
Borrar registro de la base de datos
« en: 17 de Septiembre de 2007, 17:11:31 pm »
Saludos....aqui yo otra vez molestandolos... bueno mi casoe s q tngo un sistema donde lo uso para publicar noticias.. pero en mi panel de control q lo estoy desarrollando me gustaria q se pudieran eliminar o modificar... mas no se como se hace.. puse los botones pero ni idea... si alguien pudiese ayudarme aqui les dejo el codigo
<?php
mb_http_input
("utf-8");
mb_http_output("utf-8");
?>
<?php 
require(&#39;Connections/noticias.php&#39;); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function 
GetSQLValueString($theValue$theType$theDefinedValue ""$theNotDefinedValue ""
{
  
$theValue get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;

  
$theValue function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);

  switch (
$theType) {
    case 
"text":
      
$theValue = ($theValue != "") ? "&#39;" $theValue "&#39;" "NULL";
      break;    
    case 
"long":
    case 
"int":
      
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case 
"double":
      
$theValue = ($theValue != "") ? "&#39;" doubleval($theValue) . "&#39;" "NULL";
      break;
    case 
"date":
      
$theValue = ($theValue != "") ? "&#39;" $theValue "&#39;" "NULL";
      break;
    case 
"defined":
      
$theValue = ($theValue != "") ? $theDefinedValue $theNotDefinedValue;
      break;
  }
  return 
$theValue;
}
}

$editFormAction $_SERVER[&#39;PHP_SELF&#39;];
if (isset($_SERVER[&#39;QUERY_STRING&#39;])) {
  
$editFormAction .= "?" htmlentities($_SERVER[&#39;QUERY_STRING&#39;]);
}

if ((isset(
$_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  
$insertSQL sprintf("INSERT INTO noticias (id, fecha, noticia) VALUES (%s, %s, %s)",
                       
GetSQLValueString($_POST[&#39;id&#39;], "int"),
                       
GetSQLValueString($_POST[&#39;fecha&#39;], "date"),
                       
GetSQLValueString($_POST[&#39;noticia&#39;], "text"));

  
mysql_select_db($database_noticias$noticias);
  
$Result1 mysql_query($insertSQL$noticias) or die(mysql_error());

  
$insertGoTo "news.php";
  if (isset(
$_SERVER[&#39;QUERY_STRING&#39;])) {
    
$insertGoTo .= (strpos($insertGoTo, &#39;?&#39;)) ? "&" : "?";
    
$insertGoTo .= $_SERVER[&#39;QUERY_STRING&#39;];
  
}
  
header(sprintf("Location: %s"$insertGoTo));
}

$maxRows_Recordset1 10;
$pageNum_Recordset1 0;
if (isset(
$_GET[&#39;pageNum_Recordset1&#39;])) {
  
$pageNum_Recordset1 $_GET[&#39;pageNum_Recordset1&#39;];
}
$startRow_Recordset1 $pageNum_Recordset1 $maxRows_Recordset1;

mysql_select_db($database_noticias$noticias);
$query_Recordset1 "SELECT * FROM noticias ORDER BY id ASC";
$query_limit_Recordset1 sprintf("%s LIMIT %d, %d"$query_Recordset1$startRow_Recordset1$maxRows_Recordset1);
$Recordset1 mysql_query($query_limit_Recordset1$noticias) or die(mysql_error());
$row_Recordset1 mysql_fetch_assoc($Recordset1);

if (isset(
$_GET[&#39;totalRows_Recordset1&#39;])) {
  
$totalRows_Recordset1 $_GET[&#39;totalRows_Recordset1&#39;];
} else {
  
$all_Recordset1 mysql_query($query_Recordset1);
  
$totalRows_Recordset1 mysql_num_rows($all_Recordset1);
}
$totalPages_Recordset1 ceil($totalRows_Recordset1/$maxRows_Recordset1)-1;

mysql_select_db($database_noticias$noticias);
$query_Recordset1 "SELECT * FROM noticias ORDER BY id ASC LIMIT 10"
$Recordset1 mysql_query($query_Recordset1$noticias) or die(mysql_error());
$row_Recordset1 mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 mysql_num_rows($Recordset1);
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
<!--
function MM_validateForm() { //v4.0
  if (document.getElementById){
    var i,p,q,nm,test,num,min,max,errors=&#39;&#39;,args=MM_validateForm.arguments;
    for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=document.getElementById(args[i]);
      if (val) { nm=val.name; if ((val=val.value)!="") {
        if (test.indexOf(&#39;isEmail&#39;)!=-1) { p=val.indexOf(&#39;@&#39;);
          if (p<1 || p==(val.length-1)) errors+=&#39;- &#39;+nm+&#39; must contain an e-mail address.\n&#39;;
        } else if (test!=&#39;R&#39;) { num = parseFloat(val);
          if (isNaN(val)) errors+=&#39;- &#39;+nm+&#39; must contain a number.\n&#39;;
          if (test.indexOf(&#39;inRange&#39;) != -1) { p=test.indexOf(&#39;:&#39;);
            min=test.substring(8,p); max=test.substring(p+1);
            if (num<min || max<num) errors+=&#39;- &#39;+nm+&#39; must contain a number between &#39;+min+&#39; and &#39;+max+&#39;.\n&#39;;
      } } } else if (test.charAt(0) == &#39;R&#39;) errors += &#39;- &#39;+nm+&#39; is required.\n&#39;; }
    } if (errors) alert(&#39;The following error(s) occurred:\n&#39;+errors);
    document.MM_returnValue = (errors == &#39;&#39;);
} }
//-->
</script>
<link href="estilos.css" rel="stylesheet" type="text/css" />
</head>

<body>
<form action="<?php echo $editFormAction?>" method="post" name="form1" id="form1">
  <table align="center">
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="verdana_once">Fecha:</td>
      <td class="verdana10"><input name="fecha" type="text" id="fecha" onblur="MM_validateForm(&#39;fecha&#39;,&#39;&#39;,&#39;R&#39;);return document.MM_returnValue" value="" size="32" /></td>
    </tr>
    <tr valign="baseline">
      <td align="right" valign="top" nowrap="nowrap" class="verdana_once">Noticia:</td>
      <td class="verdana10"><textarea name="noticia" cols="50" rows="5" id="noticia" onblur="MM_validateForm(&#39;noticia&#39;,&#39;&#39;,&#39;R&#39;);return document.MM_returnValue"></textarea>
      </td>
    </tr>
    <tr valign="baseline">
      <td align="right" nowrap="nowrap" class="verdana10">&nbsp;</td>
      <td class="verdana10"><input type="submit" value="Insertar Noticia" /></td>
    </tr>
  </table>
  <input type="hidden" name="id" value="" />
  <input type="hidden" name="MM_insert" value="form1" />
</form>
<p>&nbsp;</p>
<table width="100%" border="0" cellspacing="3" cellpadding="0">
  <tr>
    <td width="10%" class="titulos"><strong>ID</strong></td>
    <td width="14%" class="titulos"><strong>Fecha</strong></td>
    <td width="60%" class="titulos"><strong>Noticia</strong></td>
    <td width="16%">&nbsp;</td>
  </tr>
</table>
<br />
<?php do { ?>
  <table width="100%" border="0" cellpadding="0" cellspacing="3">
    <tr>
      <td width="10%" class="verdana10"><?php echo "$row_Recordset1[id]"?></td>
      <td width="14%" class="verdana10"><?php echo "$row_Recordset1[fecha]"?></td>
      <td width="60%" class="verdana10"><?php echo "$row_Recordset1[noticia]"?></td>
      <td width="16%" class="verdana10">Eliminar / Modificar</td>
    </tr>
      </table>
  <?php } while ($row_Recordset1 mysql_fetch_assoc($Recordset1)); ?></body>
</html>
<?php
mysql_free_result
($Recordset1);
?>

Comunidad PHPeros

Borrar registro de la base de datos
« en: 17 de Septiembre de 2007, 17:11:31 pm »

Desconectado naveda

  • Administrador General
  • PHPero Master
  • *****
  • Mensajes: 2.282
  • Karma: 165
  • Sexo: Masculino
    • Ver Perfil
    • naveda.me
Re: Borrar registro de la base de datos
« Respuesta #1 en: 19 de Septiembre de 2007, 18:06:55 pm »
Bien pues es muy sencillo, cada noticia tiene una clave primaria que sirve para identificarlas entre las demás noticias.
Esta clave primaria es la ID, haciendo referencia a esta ID podemos manipular la notica que uno desee simplemente indicandola.

Código: [Seleccionar]
<a href="noticias.php?accion=borrar&id=1">Eliminar</a>Y el posterior codigo haria que se eliminara la noticia con ID 1.

¿Captas la idea base?



No entiendo porque abres y cierras las etiquetas de PHP tantas veces al comienzo de tu codigo.
« Última modificación: 19 de Septiembre de 2007, 18:09:29 pm por naveda »
Por favor, leete las Normas


Desconectado kalash

  • PHPerit@
  • *
  • Mensajes: 32
  • Karma: 0
    • Ver Perfil
Re: Borrar registro de la base de datos
« Respuesta #2 en: 19 de Septiembre de 2007, 18:43:55 pm »
ahmm... es q trabajo con dreamweaver soy nuevo programando en php man y aun no estoy muy diestro