Necesito que al ingresar en un campo:
Fecha Inicio : DD/MM/AAAA
En la fehca Fin lo copie tal cual como aparece en Fecha Inicio, es decir darle un valor minimo como seria la fecha, xq podria terminar el mismo dia... alguien em ayuda..
Fecha Fin :
tengo el siguiente codigo
<!--FECHAS-->
<table width="810" border="0" cellpadding="2" cellspacing="0" bordercolor="#990000">
<tr valign="middle" bgcolor="#CCCCFF">
<td width=103>Desde </td>
<td width=135><!--<select name="day_from" class="Estilo2" id="select">
<option value="">--elija--</option>
<?
for ($fd=$month_first_day;$fd<=$month_last_day;$fd++):
$fd2 = $fd;
$the_month2 = $the_month;
if (strlen($fd)==1) $fd2 = "0".$fd;
if (strlen($the_month)==1) $the_month2 = "0".$the_month;
?>
<option value="<?= $fd?>">
<?= $fd2."-".$the_month2."-".$the_year ?>
</option>
<?
endfor;
?>
</select>-->
<input name="day_from" type="text" class="Estilo2" id="day_from" size="10" maxlength="10">
<a href="javascript:void(0)" onClick="open_cal('day_from')"><img src="images/b_calendar.gif" width="16" height="16" border="0"></a> </td>
<td width=50>Hasta</td>
<td width=127><!--<select name="day_to" class="Estilo2" id="select5">
<option value="">--elija--</option>
<?
for ($fd=$month_first_day;$fd<=$month_last_day;$fd++):
$fd2 = $fd;
$the_month2 = $the_month;
if (strlen($fd)==1) $fd2 = "0".$fd;
if (strlen($the_month)==1) $the_month2 = "0".$the_month;
?>
<option value="<?= $fd?>">
<?= $fd2."-".$the_month2."-".$the_year ?>
</option>
<?
endfor;
?>
</select>-->
<input name="day_to" type="text" class="Estilo2" id="day_to" size="10" maxlength="10">
<a href="javascript:void(0)" onClick="open_cal('day_to')"><img src="images/b_calendar.gif" width="16" height="16" border="0"></a>
Mezcla de PHP con JavaSript