code problem
Posted: Thu Jul 28, 2016 5:19 am
anyone plz tell me what i do with this code ???
here are the instructions (below)
. On line 9, add a condition inside the parentheses ( ) that makes the while loop run as long as $loopCond == true
. Inside the curly braces, use echo to output "<p>The loop is running.</p>"
. Then click Save & Submit Code to run your first PHP while loop!
these are the instructions for code?
and here the code in which we implement these instructions (below)
plzz tell what should i do ??????
here are the instructions (below)
. On line 9, add a condition inside the parentheses ( ) that makes the while loop run as long as $loopCond == true
. Inside the curly braces, use echo to output "<p>The loop is running.</p>"
. Then click Save & Submit Code to run your first PHP while loop!
these are the instructions for code?
and here the code in which we implement these instructions (below)
Code: Select all
<!DOCTYPE html>
<html>
<head>
<title>Your First PHP while loop!</title>
</head>
<body>
<?php
$loopCond = true;
while (){
//Echo your message that the loop is running below
$loopCond = false;
}
echo "<p>And now it's done.</p>";
?>
</body>
</html>plzz tell what should i do ??????