Konu
Phpde sıralama
30-08-2007, 13:58:36
#7
rockhll
<?php
function SiraNo() {
static $sayi=0;
$sayi++;
echo $sayi;
}
SiraNo();
?>