echo $_POST['time']."<br/>";
echo $_POST['day']."<br/>";
echo $_POST['year']."<br/>";
echo $_POST['month']."<br/>";
I have value store like this now I want to create a timestamp from these value. How to do that in PHP? Thanks in advance
echo $_POST['time']."<br/>";
echo $_POST['day']."<br/>";
echo $_POST['year']."<br/>";
echo $_POST['month']."<br/>";
I have value store like this now I want to create a timestamp from these value. How to do that in PHP? Thanks in advance