This question is based on this previously asked question :
Magento custom module date field saving date to one day before the selected date !!!
So now i want to add one day custom way instead, after finding no answer from previous question.
if ($data['start_date'] != NULL)
{
$date = Mage::app()->getLocale()->date($data['start_date'], Zend_Date::DATE_SHORT);
$model->setStartDate($date->toString('YYYY-MM-dd HH:mm:ss'));
}
How will i add one day to it ?
Using explode function, setting time to 00 and saving data solved my problem