It is true! 42 IS the most magical magic number

You've chosen the best number. Clearly, you rock.





END OF OUTPUT




Source Code of 4.php


<?php    //OPEN PHP CODE BLOCK

echo "<html>\n";    //If echoing code, be conscious of needing new lines, otherwise resulting code will be a mess
echo "<body>\n";    // \n only affects the source code, web browsers ignore it when rendering
            // "View-Source" of the rendered web page to see what I mean

$exampleVar true;

if (
$exampleVar) {
    echo 
"<h1>It is true! 42 IS the most magical magic number</h1>\n";
}
else {
    echo 
"<h1>This makes me sad...</h1>\n";
}

$exampleValue 42;
if (
$exampleValue == 42) {
    echo 
"<h2>You've chosen the best number. Clearly, you rock.</h2>\n";
}
else {
    echo 
"<h2>Sorry, wrong number!</h2>\n";
}


//YOU CAN ALSO CLOSE YOUR PHP BLOCK AND WRITE REGULAR HTML
?>
</body>
</html>





<?php //WILL DISPLAY CODE OF THIS FILE ON THE WEBPAGE//
######################################################################
echo "<br/><br/><hr><hr>";
echo 
"<h2 style='text-align:center'>END OF OUTPUT</h2>\n";
echo 
"<hr><hr>";
echo 
"<h2><br>Source Code of ".basename((string)__FILE__) . "</h2><hr>";
show_source(__FILE__);
#######################################################################
?>