session_start();
include 'class/ShortURL.php';
$url = new ShortURL();
$ret = $url->extractEverything();
echo '
';
foreach($ret as $unRet){
echo '- '.$unRet['attributes']['id'].' => '.$unRet['childs']['url'].' => '.$unRet['childs']['hit'].' hits';
}
echo '
';