When are you supposed to use endif to end the conditional statement?

When are you supposed to use endif to end the conditional statement?

View Answers

November 15, 2010 at 11:33 AM

Hi all,

When the original if was followed by : and then the code block without braces.

Example:

<?php
if ($username == "deepak"):
    echo "User Name is deepak.";
elseif ($username == "kumar"):
    echo "User Name is kumar.";
else:
    echo "wrong user name";
endif;
?>

Thanks









Related Tutorials/Questions & Answers:
Advertisements