/* style modified from glish: http://www.glish.com/css/ */ body{margin:0px 0px 0px 0px;font-family:trebuchet ms, verdana, sans-serif;background-color:white;} #Title{font-size:63px;padding-left:15px;padding-top:10px;text-transform:uppercase;font-family:trebuchet ms, verdana, sans-serif;} #Title a {text-decoration:none;color:inherit;} #Description{padding:0px;padding-top:10px;font-size:12px;font-weight:normal} .DateHeader{border-bottom:none;font-size:15px;text-align:left;margin-top:20px;margin-bottom:14px;padding:1px;padding-left:17px;color:gray;font-family:trebuchet ms, verdana, sans-serif;} .PostTitle{font-size:18px;font-weight:bold} .Post{padding-left:20px;margin-bottom:20px;text-indent:10px;padding-right:20px;line-height:22px} .PostFooter{margin-bottom:15px;margin-left:0px;color:black;font-size:10px} .comment-link {margin-left:.6em;} @media all { #leftcontent{background-color:whitesmoke;border-right:2px dashed #000;border-bottom:0px dashed #000;float:left;padding-bottom:20px;margin-right:15px;padding:0px;width:67%;border-top:0px dashed #000} } @media handheld { #leftcontent{border-right:0px dashed #000;float:none;margin:0 5% 0 5%;width:90%;} } .SideBarTitle{font-weight:bold;font-size:18px} h1{font-size:14px;padding-top:10px} a{text-decoration:none} a:hover{border-bottom:dashed 1px red} @media all { #rightcontent{font-size:12px;height:100%;margin-left:0px;text-transform:none;padding-right:10px;background-color:white;} } @media handheld { #rightcontent{margin:0 5% 0 5%;} } .blogComments{font-size:15px;text-align:left;margin-top:20px;margin-bottom:14px;padding:1px;padding-left:17px;color:gray;font-family:trebuchet ms, verdana, sans-serif;} .blogComment{margin-top:10px;margin-bottom:10px;color:black;text-indent:10px;padding-right:20px;line-height:22px} .deleted-comment {font-style:italic;color:gray;} .byline{margin-bottom:20px;margin-left:0px;margin-right:10px;color:black;font-size:10px;display:inline} #profile-container { } .profile-datablock { } .profile-img {display:inline;} .profile-img img {float:left;margin:0 10px 0px 0;border:4px solid #ccc;} #profile-container p { } #profile-container .profile-textblock { } .profile-data strong {display:block;} '); require ('config.php'); echo (' AutoDump - A Better Link Dump '); echo ('
'); echo ('
Auto Link Dump
'); echo ('
Welcome to the easiest possible way to link dump!
See the main page for more details on how to use this link dump!
'); echo ('
Top 100 Hits In '); // echo ("

Top 100 Hits In:
"); echo ('

'); $Connection=mysql_connect($db_host, $db_user, $db_pass) or die ("Failed to connect to $db_host"); mysql_select_db ($db_name) or die ("Failed to select $db_name"); $result = mysql_query ("SELECT * FROM links order by in_count DESC limit 100"); while ($row=mysql_fetch_array($result)) { $out_link = $row["out_link"]; $meta_description = $row["meta_description"]; echo ("

$out_link"); if ($meta_description != "") { echo (" - $meta_description"); } echo ("

"); } echo ('
'); //post echo ('
'); //leftcontent include ('right_col.php'); mysql_close($Connection); ?>