tengo un código para modificar registros, me funciona., pero como el registro que quiero modificar hace referencia a otra tabla por medio de un id, quiero saber si es posible visualizar mediante un combo la información de lotra tabla, es decir en lugar de mostrar el numero que aparezca el nombre.
mis tablas son.
Tabla Planteles Tabla directivos
IdPlantel IdDirectivo
Nombre Nombre
.. ...
IdDirectivo
Quiero que cuando aparezca los datos a modificar en lugar de que me aparerezca el numero que hace referencia al directivo, me aparezca su nombre.. es posible mediante un combo,, o que me aconsejan???
aquí les pongo el código que tengo..
Código PHP:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<form method="post" action="">
<?
include '../altas/conexion.php';
if (isset($modificar) or ($modificar))
{
$modif="update plantel set IdPlantel=$dnitxt2, NombrePlantel='$nombretxt', Num_Plantel='$numplantxt', ClavePlantel='$clavetxt',
JefeCtrlEsc='$jefetxt', IdDirectivo=$directivotxt, domicilio='$domtxt', CodPostal=$postaltxt, IdEntidad=$localtxt,
TelPlantel='$teltxt', ZonaEscolar='$zonatxt', SectorEscolar='$sectortxt', CveCoordReg='$coordtxt' where IdPlantel=$dnitxt2";
mysql_query($modif,$link);
echo"<script languaje='javascript'>";
echo" alert ('Datos Modificados')";
echo"</script>";
}
if(!isset($buscar) or (!$buscar))
{
?>
<table width="75%" border="5" cellspacing="0" cellpadding="0" height="94">
<tr>
<td width="13%">Dni</td>
<td width="87%">
<input type="text" name="dnitxt">
</td>
</tr>
<tr>
<td width="13%"> </td>
<td width="87%">
<input type="submit" name="buscar" value="Buscar">
</td>
</tr>
</table>
<? }
else {
$sql="select * from plantel where IdPlantel=$dnitxt";
$result=mysql_query($sql,$link);
$datos=mysql_fetch_array($result);
// $dir=$datos['IdDirectivo'];
// echo "valores".$dir;
// $sql_d=mysql_query("Select * From directivo, Plantel where Plantel.IdDirectivo = $dir",$link);
?>
<p> </p>
<table width="75%" border="5" cellpadding="0" cellspacing="0" bordercolorlight="#FFCC33" bordercolordark="#006699">
<tr>
<td width="26%" bgcolor="#FFFFCC">Dni</td>
<td width="74%">
<input type="text" value="<? echo $datos['IdPlantel']; ?>" name="dnitxt2">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Nombre Plantel</td>
<td width="74%">
<input type="text" value="<? echo $datos['NombrePlantel']; ?>" name="nombretxt">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Numero Plantel</td>
<td width="74%">
<input type="text" value="<? echo $datos['NumPlantel']; ?>" name="numplantxt">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Clave Plantel</td>
<td width="74%">
<input type="text" value="<? echo $datos['ClavePlantel']; ?>" name="clavetxt">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Jefe Ctrl. Escolar</td>
<td width="74%">
<input type="text" value="<? echo $datos['JefeCtrolEsc']; ?>" name="jefetxt">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Id Directivo</td>
<td width="74%">
<input type="text" value="<? echo $datos['IdDirectivo']; ?>" name="directivotxt">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Domicilio</td>
<td width="74%">
<input type="text" value="<? echo $datos['Domicilio']; ?>" name="domtxt">
</td>
</tr>
<tr>
<td width="26%" bgcolor="#FFFFCC">Colonia</td>
<td width="74%">
<input type="text" value="<? echo $datos['Colonia']; ?>" name="colontxt">
</td>
</tr>
<tr bgcolor="#CCCCCC">
<td>Código Postal</td>
<td><input type="text" value="<? echo $datos['CodPostal']; ?>" name="postaltxt"></td>
</tr>
<tr bgcolor="#CCCCCC">
<td>Localidad</td>
<td><input type="text" value="<? echo $datos['IdEntidad']; ?>" name="localtxt"></td>
</tr>
<tr bgcolor="#CCCCCC">
<td>Teléfono Plantel</td>
<td><input type="text" value="<? echo $datos['TelPlantel']; ?>" name="teltxt"></td>
</tr>
<tr bgcolor="#CCCCCC">
<td>Zona Escolar</td>
<td><input type="text" value="<? echo $datos['ZonaEscolar']; ?>" name="zonatxt"></td>
</tr>
<tr bgcolor="#CCCCCC">
<td>Sector Escolar</td>
<td><input type="text" value="<? echo $datos['SectorEscolar']; ?>" name="sectortxt"></td>
</tr>
<tr bgcolor="#CCCCCC">
<td>Cve Coord. Regional</td>
<td><input type="text" value="<? echo $datos['CveCoordReg']; ?>" name="coordtxt"></td>
</tr>
<tr bgcolor="#CCCCCC">
<td width="26%"> </td>
<td width="74%">
<div align="right">
<input type="submit" name="modificar" value="modificar">
</div>
</td>
</tr>
</table>
<? }?>
<p> </p>
</form>
</body>
</html>