mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
15 lines
216 B
PHP
15 lines
216 B
PHP
|
<?php
|
||
|
# Quelle: http://www.schattenbaum.net/php/
|
||
|
$blumen = array(
|
||
|
"rot"=>"Rose",
|
||
|
"rosa"=>"Tulpe",
|
||
|
"weiss"=>"Nelke",
|
||
|
"gelb"=>"Sonnenblume"
|
||
|
);
|
||
|
?>
|
||
|
|
||
|
|
||
|
<?php
|
||
|
echo $blumen["rosa"];
|
||
|
?>
|