Skip to content

Instantly share code, notes, and snippets.

@dilakv
Created February 5, 2021 13:53
Show Gist options
  • Save dilakv/222dc0868951160573635718b8b28324 to your computer and use it in GitHub Desktop.
Save dilakv/222dc0868951160573635718b8b28324 to your computer and use it in GitHub Desktop.
<!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