aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/08-Uebungen/03 PHP Grundlagen/kapitel04/counter1.php
Harald G. Mueller cdff097ef7 muh
2022-03-17 11:19:26 +01:00

7 lines
113 B
PHP

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