hi,
i have this code
it outputs only HELLOCode:<?php echo "HELLO"; abc(); echo "WORLD"; ?> <?php function abc() { if(true) { exit(0); } } ?>
but i want it to print
HELLO WORLD
It does not print world due to the exit function in the function... Please help me to get it work even if exit is executed... :-(





Reply With Quote