Contact: aviboots(AT)netvision.net.il
39,855 questions
51,776 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 */