![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
20/06/2006, 13:32
|
![Avatar de ZiTAL](http://static.forosdelweb.com/customavatars/avatar57376_1.gif) | | | Fecha de Ingreso: marzo-2004 Ubicación: Bermio (Bizkaia)
Mensajes: 1.545
Antigüedad: 20 años, 11 meses Puntos: 62 | |
;) creo que este post es dentro de PHP, para introducir un valor a un textbox:
<?
$sql=pg_query($conexion, "select MAX(no_requisicion) from requisicion");
while($sql_max = mysql_fetch_row($sql))
{
$max=$sql_max[0];
}
?>
<input type="textbox" name="nombre" value="<? echo $max; ?>"> |