I have the following script
<?php
echo "I am alive<br>";
die("I am dying<br>");
echo ("Dead");
?>
The output that I get is
I am alive
I am dying
Is there any way (alternative/substitute of die()
) using which the execution of the remaining script be continued?
EDIT :
Sorry I have got what I wanted and have voted to close the question. Please neglect the question.