Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
81 views1 page

TRFDD

This PHP script echoes the text "My first PHP script!" and contains a while loop that will continuously execute the code within the loop as long as the condition remains true.

Uploaded by

Nisha Joshi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views1 page

TRFDD

This PHP script echoes the text "My first PHP script!" and contains a while loop that will continuously execute the code within the loop as long as the condition remains true.

Uploaded by

Nisha Joshi
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<body>
<?php
echo "My first PHP script!";
?>
</body>
</html>

while (condition is true) {


code to be executed;
}

You might also like