yes, of course i tested it.
i can create a timestamp (but if it's correct or not...?)
but if i want to format that timestamp into a new date format with the date() function
i get an integer which makes no sense at all.
so am i doing something wrong? or do i need to format the given date first (and how) before creating the timestamp..
$payment_date_stamp = strtotime($_POST['payment_date']);
$payment_date = date('F j, Y, g:i a', $payment_date_stamp);
thanx!