Created
February 5, 2021 13:53
-
-
Save dilakv/222dc0868951160573635718b8b28324 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Curso - PHP - While</title> | |
</head> | |
<body> | |
<?php | |
# Estructuras Repetitivas | |
# Do While | |
$i = 10; | |
while ($i < 10) { | |
echo "Valor de $i <br />"; | |
$i += 1; | |
} | |
echo "<hr />"; | |
$i = 10; | |
do { | |
echo "Valor de $i <br />"; | |
$i += 1; | |
} while ($i < 10); | |
?> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment