mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 07:03:41 +01:00
21 lines
253 B
PHP
21 lines
253 B
PHP
<?php
|
|
|
|
// Ein einzeiliger Kommentar
|
|
|
|
// Ausgabe des Textes "Hallo Welt"
|
|
echo "Hallo Welt!";
|
|
|
|
// Die folgende Anweisung ist "auskommentiert".
|
|
// echo "Hallo Welt!";
|
|
|
|
/*
|
|
Mehrzeiliger
|
|
Kommentar
|
|
*/
|
|
|
|
/**
|
|
* Mehrzeiliger Kommentar
|
|
* im PHPDoc-Format
|
|
*/
|
|
|
|
?>
|