예제 #1
0
파일: getPosts.php 프로젝트: NickGeek/Fancy
<?php

include_once 'DashboardHandler.php';
if (empty($_GET['blog'])) {
    echo "Not enough data has been sent";
    exit;
}
$handler = new DashboardHandler();
echo $handler->getPosts($_GET['blog']);