CodeIgniter Forums
need with date input? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: need with date input? (/showthread.php?tid=12454)

Pages: 1 2


need with date input? - El Forum - 10-23-2008

[eluser]newbie boy[/eluser]
I got the solution:

in the model controller this must go:

Code:
$calendar = $data['day']."/".$data['month']."/".$data['year'];
      $date = explode("/",$calendar);
            
     $this->birthday    = date("Y/m/d",mktime(0,0,0,$date[1],$date[0],$date[2]));

hope this can help you too.