Posts by B.J. • 21 points
1 post
-
2
votes3
answers434
viewsA: Error converting php data
to use strtotime the way you put it, simply replace "/" with "-". $v_data= date('Y-m-d', strtotime(str_replace('/', '-', $data))) that will work!
1 post
2
votes3
answers434
viewsto use strtotime the way you put it, simply replace "/" with "-". $v_data= date('Y-m-d', strtotime(str_replace('/', '-', $data))) that will work!