PHP: Unterschied zwischen den Versionen
Aus Byte-Welt Wiki
Zur Navigation springenZur Suche springenK |
K |
||
Zeile 10: | Zeile 10: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
− | Externe Links | + | ==Externe Links== |
− | |||
* [http://php.net/manual/de/ PHP Handbuch] | * [http://php.net/manual/de/ PHP Handbuch] | ||
* [http://www.php-faq.de PHP FAQ] | * [http://www.php-faq.de PHP FAQ] |
Aktuelle Version vom 29. Juli 2018, 13:19 Uhr
Was ist PHP?
PHP ist ein Akronym für Hypertext Preprocessor und ist eine imperative, objektorientierte Skriptsprache zur Erzeugung dynamischer Webseiten.
Die Systax ist an C, Perl und Java angelehnt und ist die am häufigsten im Internet verwendete Sprache für die Webseitenerstellung.
Hello World
<?php
echo "Hello World";
?>