| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/going-to-event.php |
<?php
if ($f == "going-to-event") {
$data = array(
'status' => 500
);
if (isset($_GET['eid']) && is_numeric($_GET['eid'])) {
if (Wo_AddEventGoingUsers($_GET['eid'])) {
$data['status'] = 200;
$data['html'] = $wo['lang']['you_are_going'];
}
}
header("Content-type: application/json");
echo json_encode($data);
exit();
}