Quotes help make search much faster. Example: "Practice Makes Perfect"

Tuesday, April 23, 2013

Codecademy Sample Solution: Completing the Loop



<!DOCTYPE html>
<html>
    <head>
<title>Much a do-while</title>
</head>
<body>
    <?php
$loopCond = false;
do{
echo "<p>The loop ran even though the loop condition is false.</p>";
}while($loopCond);
echo "<p>Now the loop is done running.</p>";
    ?>
    </body>
</html>

1 comment:


This is an example of scrolling text using Javascript.

Popular Posts