i am using jquery ui date picker for take fromDate and toDate

Following is the code of from date

 <input name="from_date" id="from_date" maxlength="20" size="20" type="text"/>  

   $("#from_date").datepicker({
            dateFormat: 'M dd, yy',
            showButtonPanel: true,
            changeMonth: true,
            changeYear: true,
            defaultDate: null
        });   

now i use the form to take the value in POST varible using PHP
If the fromDate field is blank then it take value '1970-01-01' i want it blank

link|improve this question

50% accept rate
1  
Can you include the PHP script where you get the variable ? are you casting to another type in PHP ? – ManseUK Nov 2 '11 at 10:29
Following is the my PHP code $sdate = showDate($_POST['from_date'],'Y-m-d'); – hRaval Nov 2 '11 at 10:32
and the showDate() function ? – ManseUK Nov 2 '11 at 10:33
my guess is that when using showDate or other date functions in PHP if the input is empty of null then the date that is created is epoch (ie 1970-01-01) – ManseUK Nov 2 '11 at 10:34
1  
@Matteo - that wont work if the user can select that date .... – ManseUK Nov 2 '11 at 10:43
show 5 more comments
feedback

3 Answers

up vote 1 down vote accepted

Change your PHP function is use empty instead of null

function showDate($date,$format='m-d-y, h:i a') {
   if(empty($date)) return ' ';
   return date($format,strtotime($date)); 
}
link|improve this answer
it works thanks ManseUK, there is issue with my PHP function i set the condition on NULL value – hRaval Nov 2 '11 at 11:02
feedback

As you can find in jquery ui documentation (here), if you don't precise defaultDate option, default date is current date.

link|improve this answer
No its not -> defaultDate Default:null – ManseUK Nov 2 '11 at 10:37
@ManseUK Read better... "Set the date to highlight on first opening if the field is blank. Specify either an actual date via a Date object or as a string in the current dateFormat, or a number of days from today (e.g. +7) or a string of values and periods ('y' for years, 'm' for months, 'w' for weeks, 'd' for days, e.g. '+1m +7d'), or null for today". – Matteo Vinci Nov 2 '11 at 10:41
Apologies - null does in deed equal today ... anyhow that isnt the problem here - defaultDate is the date first selected when the date picker is opened .... – ManseUK Nov 2 '11 at 10:44
feedback

try to set defaultDate: '' or remove it at all

link|improve this answer
it not work while POST date – hRaval Nov 2 '11 at 10:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.