CREAR UNA TABLA DE CIUDADESCREATE TABLE ciudades (
ciu_cod char(3) NOT NULL default '',
ciu_nom varchar(25) default NULL,
PRIMARY KEY (ciu_cod)
) TYPE=MyISAM;
CREAR UN FORMULARIO<html>
<center>
<h1> Modulo de Ciudades </h1>
<form name=m method=get action="">
<table border=1>
<tr> <td> Codigo <td> : <input type=text name=ciu_cod value="<?php echo $ciu_cod1 ?>" size=5 maxlength=5>
<tr> <td> Nombre <td> : <input type=text name=ciu_nom value="<?php echo $ciu_nom1 ?>" size=30 maxlength=30>
</table>
<input type= submit name=modifica value=Modificar >  
<input type= submit name=consulta value=Consultar >  
</form>
</html>
PARA MODIFICAR DEBES CONSULTAR PRIMERO LOS REGISTROS QUE HAS INSERTADO:$consulta=$_POST['consulta'];
if( $consulta ){
$sql = "select * from ciudades where ciu_cod = '$ciu_cod' ";
$cursor = mysql_query( $sql, $conexion );
if( $row = mysql_fetch_array( $cursor ) ){
$ciu_cod1 = $row["ciu_cod"];
$ciu_nom1 = $row["ciu_nom"];
}
else{
echo "Codigo $ciu_cod NO existe...";
}
}
LUEGO DE CONSULTAR PUEDES EDITAR LOS CAMPOS
$modifica=$_POST['modifica'];
if( $modifica ){
$sql = "select * from ciudades where ciu_cod = '$ciu_cod' ";
$cursor = mysql_query( $sql, $conexion );
if( $row = mysql_fetch_array( $cursor ) ){
$sql = "update ciudades set ciu_nom = '$ciu_nom' where ciu_cod = '$ciu_cod' ";
if( mysql_query( $sql, $conexion ) )
echo "Actualizacion O.K..";
else
echo "Actualizacion Fallo...";
}
else{
echo "Codigo $ciu_cod NO existe para Modificar...";
}
}
Y DEBES TENER UN ARCHIVO LOGICAMENTE DE CONEXION A LA BD EJ(conex.php):<?php
$dbname = "NOMBRE_DE_LA_BASEDEDATOS";
$conexion = mysql_connect( "localhost", "root",""); //se conecta
if( ! mysql_select_db( $dbname, $local ) ) // abre la B.D
echo "Error al conectar con la Base de Datos: $dbname";
?>
EN RESUMIDAS CUENTAS EL SCRIPT QUEDARIA ASI:<?php
include("conex.php");
$consulta=$_POST['consulta'];
if( $consulta ){
$sql = "select * from ciudades where ciu_cod = '$ciu_cod' ";
$cursor = mysql_query( $sql, $conexion );
if( $row = mysql_fetch_array( $cursor ) ){
$ciu_cod1 = $row["ciu_cod"];
$ciu_nom1 = $row["ciu_nom"];
}
else{
echo "Codigo $ciu_cod NO existe...";
}
}
/*LUEGO DE CONSULTAR PUEDES EDITAR LOS CAMPOS*/
$modifica=$_POST['modifica'];
if( $modifica ){
$sql = "select * from ciudades where ciu_cod = '$ciu_cod' ";
$cursor = mysql_query( $sql, $conexion );
if( $row = mysql_fetch_array( $cursor ) ){
$sql = "update ciudades set ciu_nom = '$ciu_nom' where ciu_cod = '$ciu_cod' ";
if( mysql_query( $sql, $conexion ) )
echo "Actualizacion O.K..";
else
echo "Actualizacion Fallo...";
}
else{
echo "Codigo $ciu_cod NO existe para Modificar...";
}
}
?>
<html>
<center>
<h1> Modulo de Ciudades </h1>
<form name=m method=get action="">
<table border=1>
<tr> <td> Codigo <td> : <input type=text name=ciu_cod value="<?php echo $ciu_cod1 ?>" size=5 maxlength=5>
<tr> <td> Nombre <td> : <input type=text name=ciu_nom value="<?php echo $ciu_nom1 ?>" size=30 maxlength=30>
</table>
<input type= submit name=modifica value=Modificar >  
<input type= submit name=consulta value=Consultar >  
</form>
</html>
Si tienes alguna duda comentame