Cita:
Iniciado por andoencombi este es mi campo en el formulario
<input name="fecha" type="text" id="fecha" value="<?php echo date("d/M/Y"); ?>" disabled="disabled"/>
despues en mi php recibo la variable asi:
$fecha=$_POST['fecha'];
y guardo en la bd de datos
mysql_query("INSERT INTO latabla(fecha)VALUES ('$fecha')" ,$link);
checa aqui [URL="http://www.htmlcodetutorial.com/forms/_INPUT_DISABLED.html"]http://www.htmlcodetutorial.com/forms/_INPUT_DISABLED.html[/URL]
quiza sea como poner el disabled
Código:
<INPUT NAME="realname" VALUE="Hi There" DISABLED>