lernen prog-p added (nicht alles) 1/2

This commit is contained in:
danielvici123
2024-11-12 22:47:12 +01:00
parent 61872b31cf
commit d8de12e6d7
9 changed files with 274 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<!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
/* STRING */
$name="Daniel";
/* GANZZAHL */
$note = 1;
/* NEGATIVE GANZZAHL */
$negzahl = -2;
/* KOMMAZAHL */
$kommazahl=1.23;
/* GROßE ZAHL*/
$grossezahl = 5.5e6; // 5500000
/* KLEINE ZAHL*/
$kleinzahl = 1.2e-3; // 0.0012
?>
</body>
</html>