Forum Moderators: coopster
function check(){
if($someVariable){
//exit the function but keep the script running
}//if
else{
//do some code
echo("we ran the function");
}//else
}//check
echo("Script still running");
I would like to always see script still running but only see we ran the function if $someVariable is not true. Thanks