Untitled

Virker ikke,
 avatar
Esbjerg82
php
2 years ago
152 B
6
Indexable
<?php
$now = new \DateTime();
$nextDate = new \DateTime($start_date);

if ($now >= $nextDate) {
	echo 'Startet';
} else {
	echo 'Afventer opstart';
}
?>
Editor is loading...