parse.com-php-library
parse.com-php-library copied to clipboard
cant save date to date field in parse
trafficstars
I was able to save a date to date field using
$theDate = date("c", strtotime($_POST["datecollected"]));
$startDate = array("__type"=>"Date","iso"=>$theDate);
$obj->startdate = $startDate;
$obj->save();
hi, I have also same problem now it fixed using above code thanx alot .