php echo line causes 500 internal server error -


$dt1 = datetime::createfromformat('m ds, y', $checkin);  echo($dt1);  

when add echo line receive 500 internal server error.

$dt1 object ..so cant echo it.it raise error.you need like..

echo $dt1->format('d.m.y'); 

Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -