How to $_POST Bootstrap Form Helper Datepicker?

3.9k Views Asked by At

I already make the datepicker run, but when I $_POST the input of the datepicker I get a null value..

<div class="bfh-datepicker">
    <input id="datepickers" type="text" name="dateFrom" class="datepicker" >
</div>
2

There are 2 best solutions below

0
On BEST ANSWER

Try using the name option:

<div class="bfh-datepicker">
    <input id="datepickers" type="text" data-name="dateFrom"  class="datepicker" >
</div>

I got this from the docs:

Look at example 3. They use the options by using html5's data paradigm. e.g. data-max="today"

Note that max is an option.

0
On

Assuming you've already included library, then just do what the documentation says, put:

<div class="bfh-datepicker" data-name="dateto" data-format="y-m-d"></div>

It will generate <input> tag for you. Don't forget about "data-name" option (in docs its called just "name") otherwise $_POST will not contain your datepicker value.