This keyword (exit) stops the code execution after it. Statements after exit will not run.
<?php
echo "Jaischool";
exit;
echo "This statement will not be executed.";
?>
This keyword (exit) stops the code execution after it. Statements after exit will not run.
<?php
echo "Jaischool";
exit;
echo "This statement will not be executed.";
?>