6

<?php
$currentTime = getCurrentTime();
$asleep = getSleepStatus(); // true
$getUpTime = "9:30am";
while($asleep && ($currentTime >= $getUpTime)){
?>
<p>You're late!! Its <?php echo $currentTime ?>!</p>
<?php
updateStatus();
}
?>

Comments
  • 0
    Oh no! too late to edit, but now that I'm awake I noticed syntax error: missing semicolon after $getCurrentTime ?>. It was kinda just a joke anyways, but OCD problems.
  • 0
    Get all that code out the view!
Add Comment