Initiale Version

This commit is contained in:
Jan Unger
2016-08-16 21:20:53 +02:00
commit 88cf71d772
10930 changed files with 1708903 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<?php
$name = "Max Muster";
echo $name;

View File

@@ -0,0 +1,5 @@
<?php
echo "Hallo ";
$name = "Max Muster";
echo $name;

View File

@@ -0,0 +1,11 @@
<?php
echo "Hallo ";
$_name = "Max Muster";
echo $_name;
echo "<br>";
echo "Hallo ";
$Name = "Max Muster";
echo $Name;

View File

@@ -0,0 +1,12 @@
<?php
// Groß- und Kleinschreibung bei Variablennamen wird unterschieden.
// $name und $Name sind zwei verschiedene Variablen.
echo "Hallo ";
$name = "Max Muster";
$Name = "Barbara Beispiel";
echo $name;
echo $Name;

View File

@@ -0,0 +1,6 @@
<?php
$a = 'Wert von a';
$b = 'a';
echo $$b;