Advertisement
lamhottt

Contoh Router Sensor Email

Aug 10th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. /**
  2.  * Contoh untuk sensor email
  3.  * localhost/GF/sensor-email
  4.  */
  5. GF::Route("sensor-email/{ email }",function($get){
  6.     $email = $get['email'] ? $get['email'] : "anonymous@hotmail.com";
  7.     echo "Original Email : ".$email."<hr>";
  8.     echo "Sensor Email : "._sensorEmail($email);
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement