Hola buen dia
Necesito ayuda para editar un formulario, tengo un abc, ya lo di de alta pero ahora, esos valores que di de alta tengo que cambiarlos, y lo que quiero es que al darle en el link de cambiar, me aparesca el formulario con los datos llenos, y solo tenga que borrar los valores y volver a escribir.
El código de creación del formulario es el siguiente:
Código PHP:
<form action="<?=$PHP_SELF?>" method="post">
<tr>
<td width="124" height="40"><p align="right">Servidor:</td>
<td width="210"> <p>
<select name="servidor">
<option>Seleccione una opción: </option>
<?
$sql="(Select id,name from tblservers)";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query))
{
?>
<option value="<? echo $row[1]; ?>"><? echo $row[1]; ?></option>
<?
}
?>
</select>
</p></td>
</tr>
<tr>
<td align="right" height="27">Servicio:</td>
<td>
<input type="text" name="servicio" />
</td>
</tr>
<tr>
<td height="40"><p align="right">Status:</td>
<td> <select name="status">
<option>Seleccione una opción: </option>
<option>En investigación</option>
<option>En proceso</option>
<option>Cerrado</option>
</select></td>
</tr>
<tr>
<td height="40"><p align="right">Título:</td>
<td>
<input type="text" name="titulo" size="35"
maxlength="" />
</p></td>
</tr>
<tr>
<td align="right"><p>Descripción de la <br />
problemática</p></td>
<td>
<textarea name="descripcion" cols="25" rows="5"></textarea>
</td>
</tr>
<tr>
<td height="57"> <p align="right">
<input type=submit name="editar" value=
"Editar" onclick="location.href='casos.php'" >
</p> </td>
<td>
<div align="center">
<input type="button" name="cancelar" value="Cancelar" onclick="location.href='casos.php'"/>
<input type=reset value="Borrar" />
</div> </td>
</tr>
</form>
</table>
Con ese inserto, ahora quiero que los valores insertados me aparescan en el formulario, pero no se como hacerle, si tienen alguna idea me podrían ayudar.
Aqui ya estoy haciendo el select solamente.
Se los agradecere mucho.
Saludos.