Contact: aviboots(AT)netvision.net.il
40,937 questions
53,400 answers
573 users
echo "PHP"; exit; echo "will not execute"; /* run: PHP */
echo "PHP"; exit(); echo "will not show"; /* run: PHP */
echo "PHP"; exit(0); echo "you will not see this line"; /* run: PHP */