<%
include_once( "modules/utils.inc.php" );
$tok = $authenticated = $_COOKIE["c_pass_token"];
$u = $sessionUserId = $_COOKIE["c_uid"];
$site = getSiteUrl();
$MAX_LINKS = 12;
$MAX_NAME_LENGTH = 35;
%>
<title> Feed Me Links : Cruising the Links! </title>
<% include( "$modules/header.insecure.inc.php" ); %>
<%
$con_recentKompact = mysql_connect();
mysql_selectdb( getDBName() );
$qs2 = "SELECT count(*) FROM links;";
$q2 = mysql_query( $qs2 );
if( $q2 ) $totalNumLinks = mysql_result($q2,0);
$qs2 = "SELECT count(*) FROM linksUsers;";
$q2 = mysql_query( $qs2 );
if( $q2 ) $totalNumUsers = mysql_result($q2,0);
echo "<center>";
echo "<a href=\"$site\"><b>Feed Me Links</b></a>: <span class='subtle'>$totalNumLinks links gobbled, ";
echo "$totalNumUsers users hypnotized....</span><br />";
%>
<style type="text/css">
body { background-color: white; }
div { padding: 7px; }
</style>
<br>
<%
$hideTimes = true;
$limit = 20;
$format = "2-per-line";
$interactive = 1;
include_once( "$modules/recent-with-times.inc.php" );
include_once( "$modules/random-links.inc.php" );
include( "$modules/footer.inc.php" );
%>