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