I'm trying to convert month,day and year to Unix timestamp.
<?php
day = '30' ;
$month = 'November' ;
$year = '2016' ;
$t = date('H:i');
$quoteDate = strtotime("$year-$month-$day $t");
?>
This code gives correct year but wrong day and month.