Code has been added to clipboard!

Triggering PHP Error Check

Example
<?php
  $test = 3;
  if ($test >= 1) {
    trigger_error('The value has to be 1 or lower');
  }
?>