Q. What will be the output of the following PHP code ?
Code:<?php
if (print "Program ")
print "Executed..." ;
else
print "Not Executed...";
?>
β
Correct Answer: (D)
Program Executed...
<?php
if (print "Program ")
print "Executed..." ;
else
print "Not Executed...";
?>
You must be Logged in to update hint/solution