Removed the useless googlevideo file, resolves #73

This commit is contained in:
Laurent Raufaste 2013-05-18 17:31:41 -04:00
parent b83ba26789
commit 201534cfcc

View File

@ -1,24 +0,0 @@
<?
$ADDITIONAL_CSS = ' <link rel="stylesheet" href="/include/style2.css" type="text/css">';
include_once("include/top.php");
$r = mysql_query("select prods.id, prods.name, downloadlinks.link, downloadlinks.type from downloadlinks join prods on prods.id = downloadlinks.prod where link like '%video.google%'");
printf("<table class='pouettbl'>\n");
printf("<tr>\n");
printf("<th>prod</th>\n");
printf("<th>type</th>\n");
printf("<th>google video link</th>\n");
printf("</tr>\n");
while($o = mysql_fetch_object($r)) {
printf("<tr class='bg1'>\n");
printf("<td><a href='prod.php?which=%d'>%s</a></td>\n",$o->id,$o->name);
printf("<td>%s</td>\n",$o->type);
printf("<td><a href='%s'>%s</a></td>\n",$o->link,$o->link);
printf("</tr>\n");
}
printf("</table>\n");
include_once("include/bottom.php");
?>