| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/request_verification.php |
<?php
if ($f == 'request_verification') {
if (!empty($_GET['id']) && !empty($_GET['type'])) {
if (Wo_RequestVerification($_GET['id'], $_GET['type']) === true) {
$data = array(
'status' => 200,
'html' => Wo_GetVerificationButton($_GET['id'], $_GET['type'])
);
}
}
header("Content-type: application/json");
echo json_encode($data);
exit();
}