lernen prog-p added (nicht alles) 1/2
This commit is contained in:
21
progp/lernen/zusammenfassung_ka1/for-schleife.php
Normal file
21
progp/lernen/zusammenfassung_ka1/for-schleife.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Document</title>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
<?php
|
||||
|
||||
for ($i=0; $i < 10; $i++) {
|
||||
echo "Diese Schleife durschlief schon ".$i." mal diesen Code!<br>";
|
||||
}
|
||||
|
||||
?>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user