aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/kapitel04/counter1.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

7 lines
113 B
PHP

<?php
# Quelle: http://www.schattenbaum.net/php/
$count1 = 0;
$count1= $count1 + 1;
echo $count1;
?>