Contact: aviboots(AT)netvision.net.il
39,890 questions
51,817 answers
573 users
function once($n) { static $called = false; if (!$called) { $called = true; echo $n; } } once(23); once(87); /* run: 23 */