Esto me tiene preocupada y qusiera saber porque ocurre esto?
Estos son los archivos que utilizo.
Un archivo modificar.php con el siguiente codigo que me muestra en pantalla los datos listos a modificar
Código PHP:
<?php
require_once("conexion/conexion.php");
$sql="select * from usuarios where id=".$_GET["id"]."";
$res=mysql_query($sql,$con);
?>
<html>
<head>
<title>Sistema de Gestion de Usuarios v. 2.0 - Modificar datos de Usuarios</title>
<script language="javascript" type="text/javascript" src="modjs/funciones.js"></script>
</head>
<body onLoad="limpiar()">
<?php
if ($reg=mysql_fetch_array($res))
{
?>
<form action="edit.php" method="post" name="form">
<table align="center" width="400">
<tr>
<td valign="top" align="center" width="400" colspan="2">
<h3>Modificar datos de Usuarios</h3>
</td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Documento
</strong></td>
<td valign="top" align="left" width="200">
<strong>
<input type="text" name="documento" value="<?php echo $reg["documento"];?>" />
</strong></td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Apellidos
</strong></td>
<td valign="top" align="left" width="200">
<input type="text" name="apellidos" value="<?php echo $reg["apellidos"];?>" />
</td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Nombre
</strong></td>
<td valign="top" align="left" width="200">
<input type="text" name="nombres" value="<?php echo $reg["nombres"];?>" />
</td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Dirección
</strong></td>
<td valign="top" align="left" width="200">
<input type="text" name="direccion" value="<?php echo $reg["direccion"];?>" />
</td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Zona
</strong></td>
<td valign="top" align="left" width="200">
<input type="text" name="zona" value="<?php echo $reg["zona"];?>" />
</td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Ayuda
</strong></td>
<td valign="top" align="left" width="200">
<input type="text" name="ayuda" value="<?php echo $reg["ayuda"];?>" />
</td>
</tr>
<tr>
<td align="right" valign="top" width="200"><strong>
Líder
</strong></td>
<td valign="top" align="left" width="200">
<input type="text" name="lider" value="<?php echo $reg["lider"];?>" />
</td>
</tr>
<tr>
<td valign="top" align="center" width="400" colspan="2">
<input type="hidden" name="id" value="<?php echo $_GET["id"];?>">
<input type="button" value="Volver" title="Volver" onClick="history.back();" />
||
<input type="button" value="Modificar" title="Modificar" onClick="validar()" />
</td>
</tr>
</table>
</form>
<?php
}
?>
</body>
</html>
edit.php
Código PHP:
<?php
//print_r($_POST);
require_once("conexion/conexion.php");
$sql="update usuarios
set
documento='".$_POST["documento"]."',
apellidos='".$_POST["apellidos"]."',
nombres='".$_POST["nombres"]."'
direccion='".$_POST["direccion"]."'
zona='".$_POST["zona"]."'
ayuda='".$_POST["ayuda"]."'
lider='".$_POST["lider"]."'
where
id=".$_POST["id"]."";
//echo $sql;
$res=mysql_query($sql,$con);
echo "<script type=''>
alert('Los datos del Usuario fueron modificados correctamente');
window.location='resultados.php';
</script>";
?>