i have an a jquery ui datepicker and i need to pick the date from this and then output it in a div and then for each div i need to add one day to it.
the html
<?php $date = $_POST['datepicker']; ?>
<input name="datepicker" class="calendarInput" type="text" id="datepicker">
<div>
<?php echo($date) ?>
</div>
<div>
<?php echo($date) ?>
</div>
<div>
<?php echo($date) ?>
</div>
thanks for any help in advance.
You can do it using the onSelect callback.
Assign ids to your divs and then you can modify the contents.