Chris
0
Q:

php stop execution

<?php 
//declaring variables 
$a=5; 
$b=5.0; 
  
if($a==$b) 
 { 
    //terminating script with a message using exit() 
    exit('variables are equal'); 
 } 
else
 { 
   //terminating script with a message using exit() 
    exit('variables are not equal');  
 } 
?> 
1

New to Communities?

Join the community