<?php
function SiraNo() {
static $sayi=0;
$sayi++;
echo $sayi;
}
SiraNo();
?>