Your IP : 216.73.216.93


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/delete-my-blog.php

<?php 
if ($f == "delete-my-blog") {
    if (Wo_CheckMainSession($hash_id) === true) {
        if (isset($_GET['id'])) {
            $id = Wo_Secure($_GET['id']);
        }
        $result         = Wo_DeleteMyBlog($id);
        $data['status'] = 404;
        if ($result) {
            $data = array(
                'status' => 200,
                "id" => $id
            );
        }
    }
    header("Content-type: application/json");
    echo json_encode($data);
    exit();
}