shorturl/asecretpassage.php

14 lines
332 B
PHP
Raw Normal View History

2010-12-23 12:26:25 +01:00
<?
session_start();
include 'class/ShortURL.php';
$url = new ShortURL();
$ret = $url->extractEverything();
echo '<ul>';
foreach($ret as $unRet){
2011-01-04 11:57:21 +01:00
echo '<li> '.$unRet['attributes']['id'].' => <a href="'.$unRet['childs']['url'].'">'.$unRet['childs']['url'].'</a> => '.$unRet['childs']['hit'].' hits';
2010-12-23 12:26:25 +01:00
}
echo '</ul>';