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