jeje ahora con una nueva duda estoy realizando abc, y ya lo tengo, pero ahora quiero modificar la actualización, tengo esto:
Código HTML:
<form action="<?=$PHP_SELF?>" method="post"> <p> </p> <p>Id status de servicio: <select name="select2">
Código PHP:
<?
$sql="select idstatusdeservicios,idstatusdeservicios from statusdeservicios";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query))
{
?>
<option value=" <? echo $row[0]; ?>"><? echo $row[1]; ?></option>
<?php
}
?>
?>
Código HTML:
</select> </p><p>Cabecera de caso: <input type="text" name= "cabec_cliente" size="20" maxlength="255" /> </p> <p align="left">Hostname: <input type="text" name= "hostname" size="20" maxlength="255" /> </p> <p align="left">Servicio: <input type="text" name= "service" size="35" maxlength="255" /> </p> <p align="left">Status: <input type="text" name= "stats" size="20" maxlength="255" /> </p> <p align="center"> <input type=submit name="submit3" value= "Guardar"> </p> </form>
Apreciaria que me orientaran jeje
gracias