aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/08 Uebungen/03 PHP Grundlagen/kapitel04/counter1.php

7 lines
113 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
# Quelle: http://www.schattenbaum.net/php/
$count1 = 0;
$count1= $count1 + 1;
echo $count1;
?>