Foros del Web » Programando para Internet » PHP »

Panel no actualiza

Estas en el tema de Panel no actualiza en el foro de PHP en Foros del Web. Saludos, estoy diseñando un panel donde solo se actualiza un dato, por lo cual no necesito hacer un campo en mi tabla con auto increment ...
  #1 (permalink)  
Antiguo 20/08/2008, 15:00
Avatar de T4ke0veR  
Fecha de Ingreso: agosto-2007
Ubicación: Quito - Ecuador
Mensajes: 1.720
Antigüedad: 16 años, 8 meses
Puntos: 28
Panel no actualiza

Saludos,
estoy diseñando un panel donde solo se actualiza un dato, por lo cual no necesito hacer un campo en mi tabla con auto increment pues solo necesito dos campos
img1
img2
ambos de manera int

ahora bien solo deseo hacer un update mas nada e ingresar los id q provienen de mi tabla productos solo eso...
este es mi codigo

Código PHP:
<?php require_once('../Connections/alba.php'); ?>
<?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 != "") ? "'" $theValue "'" "NULL";
      break;    
    case 
"long":
    case 
"int":
      
$theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case 
"double":
      
$theValue = ($theValue != "") ? "'" doubleval($theValue) . "'" "NULL";
      break;
    case 
"date":
      
$theValue = ($theValue != "") ? "'" $theValue "'" "NULL";
      break;
    case 
"defined":
      
$theValue = ($theValue != "") ? $theDefinedValue $theNotDefinedValue;
      break;
  }
  return 
$theValue;
}
}

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

if ((isset(
$_POST["MM_update"])) && ($_POST["MM_update"] == "form1")) {
  
$updateSQL sprintf("UPDATE principales SET img2=%s WHERE img1=%s",
                       
GetSQLValueString($_POST['img2'], "int"),
                       
GetSQLValueString($_POST['img1'], "int"));

  
mysql_select_db($database_alba$alba);
  
$Result1 mysql_query($updateSQL$alba) or die(mysql_error());

  
$updateGoTo "act_princ_home.php";
  if (isset(
$_SERVER['QUERY_STRING'])) {
    
$updateGoTo .= (strpos($updateGoTo'?')) ? "&" "?";
    
$updateGoTo .= $_SERVER['QUERY_STRING'];
  }
  
header(sprintf("Location: %s"$updateGoTo));
}

mysql_select_db($database_alba$alba);
$query_Recordset1 "SELECT * FROM principales";
$Recordset1 mysql_query($query_Recordset1$alba) or die(mysql_error());
$row_Recordset1 mysql_fetch_assoc($Recordset1);
$totalRows_Recordset1 mysql_num_rows($Recordset1);

mysql_select_db($database_alba$alba);
$query_Recordset2 "SELECT * FROM productos ORDER BY titulo ASC";
$Recordset2 mysql_query($query_Recordset2$alba) or die(mysql_error());
$row_Recordset2 mysql_fetch_assoc($Recordset2);
$totalRows_Recordset2 mysql_num_rows($Recordset2);

mysql_select_db($database_alba$alba);
$query_Recordset3 "SELECT * FROM productos ORDER BY titulo ASC";
$Recordset3 mysql_query($query_Recordset3$alba) or die(mysql_error());
$row_Recordset3 mysql_fetch_assoc($Recordset3);
$totalRows_Recordset3 mysql_num_rows($Recordset3);
?><!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>
</head>

<body>
<form action="<?php echo $editFormAction?>" method="post" name="form1" id="form1">
  <table align="center">
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Imagen 1:</td>
      <td><select name="img1" class="textoINDEX" id="img1">
        <?php
do {  
?>
        <option value="<?php echo $row_Recordset2['id']?>"><?php echo $row_Recordset2['titulo']?></option>
        <?php
} while ($row_Recordset2 mysql_fetch_assoc($Recordset2));
  
$rows mysql_num_rows($Recordset2);
  if(
$rows 0) {
      
mysql_data_seek($Recordset20);
      
$row_Recordset2 mysql_fetch_assoc($Recordset2);
  }
?>
      </select></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">Imagen 2:</td>
      <td><select name="img2" class="textoINDEX" id="img2">
        <?php
do {  
?>
        <option value="<?php echo $row_Recordset3['id']?>"><?php echo $row_Recordset3['titulo']?></option>
        <?php
} while ($row_Recordset3 mysql_fetch_assoc($Recordset3));
  
$rows mysql_num_rows($Recordset3);
  if(
$rows 0) {
      
mysql_data_seek($Recordset30);
      
$row_Recordset3 mysql_fetch_assoc($Recordset3);
  }
?>
      </select></td>
    </tr>
    <tr valign="baseline">
      <td nowrap="nowrap" align="right">&nbsp;</td>
      <td><input type="submit" value="Actualizar" /></td>
    </tr>
  </table>
  <input type="hidden" name="MM_update" value="form1" />
  <input type="hidden" name="img1" value="<?php echo $row_Recordset1['img1']; ?>" />
</form>
<p>&nbsp;</p>
</body>
</html>
<?php
mysql_free_result
($Recordset1);

mysql_free_result($Recordset2);

mysql_free_result($Recordset3);
?>
el problema esta en q no me ingresa los datos!!!!!....
__________________
Diseño gráfico, Web, imagen corporativa, publicidad ...
  #2 (permalink)  
Antiguo 20/08/2008, 16:15
 
Fecha de Ingreso: septiembre-2004
Mensajes: 324
Antigüedad: 19 años, 7 meses
Puntos: 13
Respuesta: Panel no actualiza

mismo post? http://www.forosdelweb.com/f18/encuestador-php-614331/

o mismo codigo?
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 18:55.