/ Published in: PHP
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// Notification function function outp($msg,$type) { if ($type=="i") $msg="[i] ".$msg; elseif ($type=="!") $msg="[!] ".$msg; elseif ($type=="x") $msg="[x] ".$msg; elseif ($type=="e") { $msg="[x] ".$msg; $exit=1 } echo $msg."\n"; if ($exit==1) }