Mittwoch, 23. Juni 2010
for
Am Mittwoch, 23. Jun 2010 im Topic 'E.T. phone home'
for ($i = 1; $i <= 10; $i++) {echo $i;}
for ($i = 1, $j = 0; $i <= 10; $j += $i, print $i, $i++);
Quelle: http://de3.php.net/manual/de/control-structures.for.php
Permalink (0 Kommentare) Kommentieren
Freitag, 18. Juni 2010
Array-Deklaration in php
Am Freitag, 18. Jun 2010 im Topic 'E.T. phone home'
array("foo" => "bar", 12 => true);
array(5 => 43, 32, 56, "b" => 12);
array(5 => 43, 6 => 32, 7 => 56, "b" => 12);
Permalink (1 Kommentar) Kommentieren
Mannigfaltige Verzweigung in php
Am Freitag, 18. Jun 2010 im Topic 'E.T. phone home'
(bedingte Ausführung #2)
switch ($i) {
Quelle: http://www.php.net/manual/de/control-structures.switch.php
switch ($i) {
case "apple":
echo "i is apple";
break;
case "bar":
echo "i is bar";
break;
case "cake":
echo "i is cake";
break;
}echo "i is apple";
break;
case "bar":
echo "i is bar";
break;
case "cake":
echo "i is cake";
break;
Permalink (0 Kommentare) Kommentieren
Bedingte Ausführung in php
Am Freitag, 18. Jun 2010 im Topic 'E.T. phone home'
if ($a > $b) {
echo "a ist größer als b";
} else {
echo "a ist NICHT größer als b";
}
Permalink (0 Kommentare) Kommentieren
Donnerstag, 17. Juni 2010
Schleife in php
Am Donnerstag, 17. Jun 2010 im Topic 'E.T. phone home'
$i = 1;
while ($i <= 10) {
echo $i++;
}
$i = 1;
while ($i <= 10):
echo $i;
$i++;
endwhile;
Permalink (0 Kommentare) Kommentieren
Sonntag, 13. Juni 2010
Fetzt voll...
Am Sonntag, 13. Jun 2010 im Topic 'E.T. phone home'
sich einen Server zuhause auf dem eigenen Rechner zu installieren:
http://www.apachefriends.org/en/xampp.html
http://help.joomla.org/ghop/feb2008/task167/xampp.html
Wenn man dann noch Ahnung von PHP und so was hätte, könnte man sogar richtig wild damit rumspielen.
Ich sag nur "Content Management System"...
http://php.opensourcecms.com/
http://www.apachefriends.org/en/xampp.html
http://help.joomla.org/ghop/feb2008/task167/xampp.html
Wenn man dann noch Ahnung von PHP und so was hätte, könnte man sogar richtig wild damit rumspielen.
Ich sag nur "Content Management System"...
http://php.opensourcecms.com/
Permalink (0 Kommentare) Kommentieren