Guest User

Untitled

a guest
Jan 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // PHP.INI
  2. error_reporting=E_ERROR^E_PARSE
  3.  
  4. //or better, inline with error_reporting()
  5. error_reporting(E_ERROR | E_PARSE);
  6.  
  7. if (PEAR::isError($mail_object)) {print($mail_object->getMessage());}
Add Comment
Please, Sign In to add comment