try.php

Source of try.php

<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>try.php</title>
</head>
<body>
  <p>
    <?php
    try {
      5 /0;
    } catch (Exception $e){
      print $e->getMessage();
    } // end try
    
    ?>
    
  </p>

  
</body>
</html>