It is worth mentioning I'm using PHP 5.2 so can't use the DateTime class.
I have the following code:
$date_begin = mysql_real_escape_string($_POST['dateBegin']);
$date_end = mysql_real_escape_string($_POST['dateEnd']);
Imagine they are now
$date_begin = "28/02/2015";
$date_end = "22:00:00";
How can I convert this into a php/unix timestamp?
Thanks