0
I have this input:
<p>Início do período:</p> <input type="text" id="calendario">
<script>
var start = new Date(1997, 12, 01);
var end = new Date(1998, 11, 31) ;
$(document).ready(function() {
$('#calendario').datepicker({
startDate: start,
endDate: end
});
});
</script>
I need the value the user will select, how could I put this value in a php variable?
Now it’s better ;)
– Raizant
That’s exactly what I wanted as an answer, an edited that put the code of the properties, but answering you here, I’ll take the value of the date to put in a select.
– V.Avancini
could exemplify here for me @Raizant?
– V.Avancini