how to convert date and time to timestamp in php?
i have a date '07/23/2009' and a time '18:11' and i want to get a timestamp out of it : here is my example: date_default_timezone_set('UTC'); $d = str_replace('/', ', ', '07/23/2009'); $t = str_replace(':', ', ', '18:11'); $date = $t.', 0, '.$d; echo $date; echo '<br>'; echo $x = mktime("$date"); the issue is that $x gives me the current timestamp. any ideas? divyang asodiya it gives error because mktime function require all values of numbers only and this function gives only date . if you try like $h = 18; $i = 11; $s = 00; $m = 07; $d =23; $y = 2009; echo date("h-i-s-M-d-Y",mktime($h,$i,$s,