hi,
i have this code

Code:
<?php
  echo "HELLO";
  abc();
  echo "WORLD";
?>

<?php
function abc()
{
    if(true)
   {
      exit(0);
   }
}
?>
it outputs only HELLO

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... :-(