I need to realize that when creating 2 input, when you select the date of the first, the second can not be selected from the date before.
this is how little I have
<table>
<tr>
<th>Fecha de inicio</th>
<th>Fecha de termino</th>
</tr>
<tr>
<th><input type="date" name="dateInicio" value="<?php echo date('Y-m-d'); ?>" min="<?php echo date('Y-m-d'); ?>"/></th>
<th><input type="date" name="dateInicio" value="<?php echo date('Y-m-d'); ?>" min="<?php echo date('Y-m-d'); ?>"/></th>
</tr>
</table>