Bravo List
Register
Go Back   > Bravo List > Source Code > Archived Trackers > BT.Manager (phpMyBitTorrent)
Reply
  #1  
Old 6th August 2013, 14:59
Giorgatzelos's Avatar
Giorgatzelos Giorgatzelos is offline
Senior Member
 
Join Date: Nov 2009
Greece
Posts: 300
Default youtube.php edit...
Hi i edited a bit my youtube.php so it shows everything table under table...as you can see in the picture but i have a small problem, it needs to auto set width to auto so it shows as in the picture, if a computer has a screen with higher resolution it does not stretch to the right so it reaches the right column blocks...i tried width=auto than numbers but failed, i believe it misses somewhere a <td width=\"......


PHP Code:
<?php
/*
*----------------------------phpMyBitTorrent V 2.0.4---------------------------*
*--- The Ultimate BitTorrent Tracker and BMS (Bittorrent Management System) ---*
*--------------   Created By Antonio Anzivino (aka DJ Echelon)   --------------*
*-------------               http://www.p2pmania.it               -------------*
*------------ Based on the Bit Torrent Protocol made by Bram Cohen ------------*
*-------------              http://www.bittorrent.com             -------------*
*------------------------------------------------------------------------------*
*------------------------------------------------------------------------------*
*--   This program is free software; you can redistribute it and/or modify   --*
*--   it under the terms of the GNU General Public License as published by   --*
*--   the Free Software Foundation; either version 2 of the License, or      --*
*--   (at your option) any later version.                                    --*
*--                                                                          --*
*--   This program is distributed in the hope that it will be useful,        --*
*--   but WITHOUT ANY WARRANTY; without even the implied warranty of         --*
*--   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          --*
*--   GNU General Public License for more details.                           --*
*--                                                                          --*
*--   You should have received a copy of the GNU General Public License      --*
*--   along with this program; if not, write to the Free Software            --*
*-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA --*
*--                                                                          --*
*------------------------------------------------------------------------------*
*------              Â©2005 phpMyBitTorrent Development Team              ------*
*-----------               http://phpmybittorrent.com               -----------*
*------------------------------------------------------------------------------*
*-----------------   Sunday, September 14, 2008 9:05 PM   ---------------------*
*/
if (defined('IN_PMBT'))die ("You can't include this file");
define("IN_PMBT",true);
include(
"header.php");
if (
$_GET["id"] != ""){
$id =$_GET["id"];
if (
checkaccess('can_add_uttube')){
$db->sql_query("DELETE FROM ".$db_prefix."_youtubevideo WHERE id= $id") or sqlerr(__FILE____LINE__);
}
else{
bterror(_btauthorized,_btsorry);
}

if (
$_SERVER["REQUEST_METHOD"] == "POST")
{
if (
$link == "" || $name == "")bterror(_btmissing,_btsorry);
if(!
checkaccess('can_add_uttube')){
        
bterror(_btprivelages,_btsorry);
}
    
$name $_POST["name"];
    
$user $user->name;
    
$link "http://youtube.com/v/".$_POST[link]."";
    
$db->sql_query("INSERT INTO ".$db_prefix."_youtubevideo (link, name, addedby, addtime) VALUES('$link', '$name', '$user',NOW())") or sqlerr(__FILE____LINE__);
                        echo 
"<meta http-equiv=\"refresh\" content=\"0;url=youtube.php\">";
  }
if (!
checkaccess('can_view_utube')){
OpenErrTable(_btaccdenied);
echo 
"<p>You do not have Permissions to Access Utube Videos at this time</p>";
CloseErrTable();
die();
}else{
$showvid "";
if (
$op == "show"){
//$showvid = $video;
$showvid "<object width=\"480\" height=\"295\"><param name=\"movie\" value=\"".$video."&hl=en&fs=1&rel=0\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"".$video."&hl=en&fs=1&rel=0\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"480\" height=\"295\"></embed></object>";
}else{
$showvid "";
}
print(
"\n\n\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tr>\n");
print(
"<td width=\"auto\" valign=\"top\">\n");
print(
"<table width=\"auto\"><tr><td align=\"center\">\n");
echo
"<tr><td align=\"center\">\n";
Opentable(_btvid_clip);
echo
"<div><center>\n";
echo
"<span class=\"style3\"><font color=\"#4c88cc\">"._btvid_choose."</font></span>\n";
echo
"</center></div>\n";
if(
$showvid !="")echo $showvid;
echo
"<span class=\"style3\"><iframe src=\"\" name=\"games\" width=\"905\" height=\"570\" scrolling=\"no\"></iframe></span>\n";
CloseTable();




//print("</td></tr></table>\n\n\n\n");
//print("<td width=\"300\" valign=\"top\">\n\n\n");
//print("<table border=\"1\"><tr><td align=\"center\">\n");




OpenTable(_btvid_list);
echo
"<div><center>\n";
//echo "<span class=\"style3\"><font color=white>"._btvid_fun."</font></span>\n";
echo"</center></div>\n";
$query "SELECT * FROM ".$db_prefix."_youtubevideo ORDER BY name";
$sql $db->sql_query($query);
while (
$row $db->sql_fetchrow($sql)) {
$link $row['link'];
$name $row['name'];
print(
"<div><a href=".$link." target=games>".$name."</div>\n");
}
CloseTable();



print(
"\n\n\n</td></tr></table></td></tr><tr><td>\n");




if (
checkaccess('can_add_uttube')){
OpenTable(_btvid_add);
echo 
"<table align=center cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#D6D9DB\" width=\"100%\" border=\"1\">";
?>
<form method="post" action="youtube.php">
<div align=center><p>
<?=_btvid_url?>"http://youtube.com/watch?v=qppuuQrklHg"<br /><?=_btvid_link?>

</p></div>
<tr><td class="tableb"><?=_btvid_link1?></td><td class="tablea"><input type="text" name="link" size="60"></td></tr>
<tr><td class="tableb"><?=_btvid_name?></td><td class="tablea"><input type="text" name="name" size="60"></td></tr>
<tr><td class="tablea" colspan="2" style="text-align:center"><input type="submit" value="<?=_btsubmitok1?>" class="btn"></td></tr>
</form>
<?php
echo "</table>";
CloseTable();



OpenTable(_btvid_info);
echo 
"<table align=center cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" bordercolor=\"#D6D9DB\" width=\"100%\" border=\"1\">";
?>
<tr>
 <td width="5%" class="tablecat"><div align="center"><?=_btvid_id?></div></td>
 <td width="45%"class="tablecat"><div align="center"><?=_btvid_name?></div></td>
 <td width="15%"class="tablecat"><div align="center"><?=_btvid_link1?></div></td>
 <td width="20%"class="tablecat"><div align="center"><?=_btvid_addedby?></div></td>
 <td width="10%"class="tablecat"><div align="center"><?=_btvid_added?></div></td>
 <td width="5%"class="tablecat"><div align="center"><?=_btvid_delete?></div></td>
</tr>
<?php
$query 
"SELECT * FROM ".$db_prefix."_youtubevideo ORDER BY id";
$sql $db->sql_query($query);
    while (
$row2 $db->sql_fetchrow($sql)){
     
$link str_replace("http://youtube.com/v/","",$row2["link"]);
     
$name $row2["name"];
     
$id $row2["id"];
     
$addedby $row2["addedby"];
     
$addtime $row2["addtime"];
?>
<tr>
 <td width="5%" class="tablea"><div align="center"> <?=$id?></div></td>
 <td width="45%" class="tablea"><div align="left"> <?=$name?></div></td>
 <td width="15%" class="tablea"><div align="center"> <?=$link?></div></td>
 <td class="tablea"><div align="center"> <?=$addedby?></div></td>
 <td class="tablea"><div align="center"> <?=$addtime?></div></td>
 <td class="tablea"><div align="center"><?=pic("drop.gif","youtube.php?id=".$id,_btvid_remove);?></div></td>
</tr>
<?php
$nr 
$nr+1;
}
echo 
"</table>\n\n\n\n";
CloseTable();
}
}
echo 
"</td></tr></table>";
include (
"footer.php");
?>
Attached Thumbnails
3.png  
Reply With Quote
  #2  
Old 6th August 2013, 15:53
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
I need to see the generated source code from your browser
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #3  
Old 6th August 2013, 16:29
Giorgatzelos's Avatar
Giorgatzelos Giorgatzelos is offline
Senior Member
 
Join Date: Nov 2009
Greece
Posts: 300
Default
Code:

	<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<!--[if lt IE 7]>
<script defer type="text/javascript" src="http://giorgatzelos.cwahi.net/pngfix.js"></script><![endif]--><title>Archectypo Anime Fansub Tracker</title>
<script type="text/javascript">
pmbtsite_url = "http://giorgatzelos.cwahi.net";
tag_prompt = "Εισαγωγή Κειμένου:";
img_prompt = "Εισαγωγή Υπερσυνδέσμου από Εικόνα";
font_formatter_prompt = "Εισάγετε ένα κείμενο - ";
link_text_prompt = "Εισάγετε ένα όνομα υπερσυνδέσμου (προαιρετικά):";
link_url_prompt = "Εισάγετε την πλήρη διεύθυνση στ' αριστερά:";
link_email_prompt = "Εισάγετε τον πλήρη υπερσύνδεσμό σας:";
list_type_prompt = "Τι είδους λίστα θα επιθυμούσατε? Επιλέξτε ' 1 ' για λίστα αριθμών, 'a' για λίστα γραμμάτων, ή τίποτα απολύτως για μία απλή λίστα κουκκίδων.";
list_item_prompt = "Εισάγετε ένα στοιχείο της λίστας. Πιέστε OK για να εισάγετε ένα άλλο στοιχείο της λίστας ή πιέστε 'Cancel' για να ολοκληρώσετε.";
shoutrefresht = "60000";
shoutidle = "300000";



</script>
<link REL="shortcut icon" HREF="http://giorgatzelos.cwahi.net/themes/Pitch_Black/favicon.png" TYPE="image/x-icon">
<link rel="alternate" type="application/rss+xml" title="Last Torrents" href="http://giorgatzelos.cwahi.net/backend.php?op=last">
<link rel="alternate" type="application/rss+xml" title="Best Torrents" href="http://giorgatzelos.cwahi.net/backend.php?op=best">
<link rel="StyleSheet" href="http://giorgatzelos.cwahi.net/themes/Pitch_Black/style.css" type="text/css">
<script type="text/javascript" src="http://giorgatzelos.cwahi.net/global.js"></script>
<script type="text/javascript" src="overlib/overlib.js"><!-- overLIB (c) Erik Bosrup --></script>
<script type="text/javascript" src="overlib/overlib_shadow.js"><!-- overLIB (c) Erik Bosrup --></script>
<link rel="search" type="application/opensearchdescription+xml" title="Archectypo Anime Fansub Tracker" href="http://giorgatzelos.cwahi.net/opensearch.php" /><style type='text/css'>
.cwlb { text-align: right; position: absolute; top: 0; left: 0px; width: 100%; margin: 0; padding: 0; z-index:2147483647; }
.cwlb ul { color: black; margin: 0; padding: 0; list-style-type: none; overflow: hidden; background-color: #cccccc; vertical-align: middle; border-bottom: 1px solid black; height: 19px; line-height: 18px; }
.cwlb li { display: inline; }
.cwlb a { padding: 0 5px; font-family: tahoma,verdana; font-size: 11px; text-decoration: none; color:#0000cc; }
#footerad { background-color: #cccccc !important; }
#footerad span { line-height: 18px !important; }
#footerad a { line-height: 18px !important; font-size: 10px !important; }
</style>
</head>

<!--[if lt IE 7]><link rel="stylesheet" type="text/css" media="screen" href="themes/Pitch_Black/iestyle.css">
<![endif]-->
<!--[if IE 7]>
<link rel="stylesheet" type="text/css" media="screen" href="themes/Pitch_Black/iestyle.css">
<![endif]-->
<body class="ltr" onload="shoutthis_ajax()">
<!-- Start of CWahi Link Bar -->
<div class='cwlb'>
<ul>
<li><a href='http://www.cwahi.net/'>Free Web Hosting by CWahi.Net</a></li><li>|</li>
<li><a href='http://www.cwahi.net/contact/violations.php?vurl=1'>Report Site</a></li><li>|</li>
<li class='addthis_button'><script type='text/javascript'>var addthis_config = {data_track_clickback: true}</script><a class='addthis_button' href='http://www.addthis.com/bookmark.php?v=250&amp;username=cwahi'><img src='http://s7.addthis.com/static/btn/v2/lg-share-en.gif' width='125' height='16' alt='Bookmark and Share' style='border:0'/></a><script type='text/javascript' src='http://s7.addthis.com/js/250/addthis_widget.js#username=cwahi'></script></li>
<li>|</li>
<li><a href='http://www.engine001.com/gamemaker.htm'>Free 001 Game Creator</a></li>
<li>|</li>
<li><g:plusone size="small" annotation="inline" width="200"></g:plusone></li>
</ul>
</div>
<p style='height:20px;margin:0;padding:0;'> </p>
<!-- End of CWahi Link Bar -->
<table border="0" cellspacing="0" cellpadding="0" width="0" id="maintable" align="center">
<tr>
<center>
<a href="./index.php"><img src="./themes/Pitch_Black/pics/site_logo.png" alt="hold this" title="" /></a>
</div></div></td>
</center>
</tr>
<tr>
<td class="navrow" align="center">
<a href="./index.php">Αρχική Σελίδα</a> • 
<a href="./user.php?op=profile&amp;id=17">Προφίλ</a> • <a href="./pm.php"><strong>0</strong> νέα μηνύματα</a> • <a href="./faq.php">Συχνές Ερωτήσεις</a>
• <a href="./search.php">Αναζήτηση</a> • <a href="./memberslist.php">Λίστα Μελών</a> • <a href="./user.php?op=logout">Αποσύνδεση [ Mavros Xaros ]</a>	</td>
</tr>
<tr>
<td id="contentrow">
<table width="100%">
<tr>
<td width="15%" valign="top">
<div ><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Αλλαγή Θέματος&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><p align="center"><b>Θέμα</b></p>
<form id="acp_styles" type="hidden" method="post" action="#"><p><select id="template_file" name="theme_change" onchange="if (this.options[this.selectedIndex].value != '') this.form.submit();"><option value="archeCtypo_Original">archeCtypo_Original</option>
<option value="Snow_White">Snow_White</option>
<option value="NBdemon">NBdemon</option>
<option value="Pitch_Black">Pitch_Black</option>
</select></p><p align="center"><b>Γλώσσα</b></p>
<p><select id="language_file" name="language_change" onchange="if (this.options[this.selectedIndex].value != '') this.form.submit();"><option  value="english">English</option>
<option selected value="greek">Greek</option>
<option  value="help">Help</option>
</select></p> <input class="button2" type="submit" value="Επιλογή" /></form></td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Στατιστικά&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><p><img src="themes/Pitch_Black/pics/pic_uploaded.gif" border="0" alt="" title="" />2.35 GB<br><img src="themes/Pitch_Black/pics/pic_downloaded.gif" border="0" alt="" title="" />953.67 MB<br><img src="themes/Pitch_Black/pics/pic_ratio.gif" border="0" alt="" title="" />&nbsp;<font color="#00FF00">2.52</font><br />
<img src="themes/Pitch_Black/pics/upload.gif" border="0" alt="Torrents που διαμοιράζετε" title="Torrents που διαμοιράζετε" />0<br />
<img src="themes/Pitch_Black/pics/download.gif" border="0" alt="Torrents που λαμβάνετε" title="Torrents που λαμβάνετε" />0</p><br />
<br />
<p align="center"><b>Καλωσορίσατε</b></p>
<p align="center"><b>Mavros Xaros</b></p>
<b><img  src="themes/Pitch_Black/pics/noavatar.gif" alt="Mavros Xaros"></b><br /><br />
<p>Δείκτης Διαμοιρασμού: <a href='mybonus.php'>0.0</a></p></td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><div id="container">
<div id="c_wb">
<div id="content">
<table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Μενού&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><table width="100%" border="0" cellspacing="1" cellpadding="1" class="forumline" align="center">
<tr><td class="row2" width="100%"><a href="index.php">Αρχική Σελίδα</a></td></tr>
<tr><td class="row1" width="100%"><a href="amv.php">Θεματικά Βίντεο Anime [Anime Music Videos]</a></td></tr>
<tr><td class="row1" width="100%"><a href="rules.php">Κανόνες</a></td></tr>
<tr><td class="row2" width="100%"><a href="faq.php">Συχνές Ερωτήσεις</a></td></tr>
<tr><td class="row1" width="100%"><a href="phpBB3/index.php">Φόρουμ</a></td></tr>
<tr><td class="row1" width="100%"><a href="chat.php"> Συνομιλία IRC</a></td></tr>
<tr><td class="row1" width="100%"><a href="torrents.php">Προβολή Torrent</a></td></tr>
<tr><td class="row1" width="100%"><a href="upload.php">Ανέβασμα</a></td></tr>
<tr><td class="row1" width="100%"><a href="pm.php"><span id="nopm_notif">Προσωπικά Μηνύματα</span></a></td></tr>
<tr><td class="row1" width="100%"><a href="user.php?op=profile&amp;id=17">Προφίλ</a></td></tr>
<tr><td class="row1" width="100%"><a href="memberslist.php">Λίστα Μελών</a></td></tr>
<tr><td class="row1" width="100%"><a href="user.php?op=logout">Αποσύνδεση</a></td></tr>
<tr><td class="row1" width="100%"><a href="games.php">Παιχνίδια</a></td></tr>
<tr><td class="row1" width="100%"><a href="viewrequests.php">Προβολή αιτημάτων</a></td></tr>
<tr><td class="row1" width="100%"><a href="offers.php">Torrents που προσφέρονται</a></td></tr>
</table>
<p class="donation" align="center" ><br>Πρόοδος Δωρεάς</p>

<table class=main border=0 width=144px>
<tr>
<td style='padding: 0px; background-image: url(images/loadbarbg.gif); background-repeat: repeat-x'><img height=15 width=100 src="images/EU.gif" alt='0)%'>
<br>
<p class="donation" align="center" >0%</p>
</td>
</tr>
</table><p class="donation"> Στόχος: 
<font color="red">EUR   50</font><br>
 Έχουν συλλεχθεί: 
 <font color="green">EUR   0</font>
 </p>
<br><br>

<B><font color=red>&raquo;</font></B>
<a href="donate.php">Συνεισφέρετε!</a><br></td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Δημοσκοπήσεις&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" >
<table   border=1 cellspacing=2 cellpadding=2 align=center><tbody><tr><td class=text>
<p align=center><b>Τί γνώμη έχετε για τον ιχνηλάτη μας;</b></p>
<table   border=1 cellspacing=2 cellpadding=2>
<tr><td width=1% ><nobr>Υπέροχος&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=58><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 29%</td></tr>
<tr><td width=1% ><nobr>Πάρα Πολύ Καλός&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=58><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 29%</td></tr>
<tr><td width=1% ><nobr>Πολύ Καλός&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=28><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 14%</td></tr>
<tr><td width=1% ><nobr>Καλός&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=58><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 29%</td></tr>
<tr><td width=1% ><nobr>Μέτριος&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=0><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 0%</td></tr>
<tr><td width=1% ><nobr>Όχι Καλός&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=0><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 0%</td></tr>
<tr><td width=1% ><nobr>Κακός&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=0><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 0%</td></tr>
<tr><td width=1% ><nobr>Πολύ Κακός&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=0><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 0%</td></tr>
<tr><td width=1% ><nobr>Χείριστος&nbsp;&nbsp;</nobr></td><td width=99% ><img src=http://giorgatzelos.cwahi.net/images/bar_left.gif><img src=http://giorgatzelos.cwahi.net/images/bar.gif height=9 width=0><img src=http://giorgatzelos.cwahi.net/images/bar_right.gif> 0%</td></tr>
</table>
<p align=center>Ψήφοι:  7<br />
[<a class=altlink href=polloverview.php><b>Δείτε τα αποτελέσματα</b></a>]</p>
</table></td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /></div></td>
<td width="70%" valign="top">
<div id="rightcolumn">


<table border="0" cellspacing="0" cellpadding="0" align="center"><tr>
<td width="auto" valign="top">
<table width="auto"><tr><td align="center">
<tr><td align="center">
<table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Βίντεο&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><div><center>
<span class="style3"><font color="#4c88cc">Παρακαλώ επιλέξτε ένα βίντεο απο τη λίστα.</font></span>
</center></div>
<span class="style3"><iframe src="" name="games" width="905" height="570" scrolling="no"></iframe></span>
</td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Λίστα&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><div><center>
</center></div>
<div><a href=http://youtube.com/v/18nbWCpd2Qc target=games>Darker Than Black</div>
<div><a href=http://youtube.com/v/L2GxxogM-kE target=games>Fate/Stay Night</div>
<div><a href=http://youtube.com/v/SloppDh-fW4 target=games>Fate/Zero</div>
<div><a href=http://youtube.com/v/0ecfe1UMdPw target=games>Full Metal Alchemist</div>
<div><a href=http://youtube.com/v/nK1oO_iq5d0 target=games>No.6</div>
<div><a href=http://youtube.com/v/tbnL8IlcxvI target=games>One Piece</div>
<div><a href=http://youtube.com/v/uEX_0oHhM3g target=games>Sword Art Online</div>
</td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" />


</td></tr></table></td></tr><tr><td>
</td></tr></table></div></td><td><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Κατηγορίες&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td nowrap>
<p align="center" class="categories"><a href="torrents.php?cat=12"><img src="cat_pics/durarara-icon.png" border="0" title="Ολοκληρωμένα" alt="Ολοκληρωμένα" ></a><a href="torrents.php?cat=13"><img src="cat_pics/dgrayman-icon.png" border="0" title="Μεταγλωττισμένα" alt="Μεταγλωττισμένα" ></a><a href="torrents.php?cat=14"><img src="cat_pics/fairy-tail-icon.png" border="0" title="Αγγλικά/Ελληνικά" alt="Αγγλικά/Ελληνικά" ></a><br><a href="torrents.php?cat=15"><img src="cat_pics/fullmetal-panic-icon.png" border="0" title="Άλλη Γλώσσα/Ελληνικά " alt="Άλλη Γλώσσα/Ελληνικά " ></a><a href="torrents.php?cat=16"><img src="cat_pics/ergo-proxy-icon.png" border="0" title="Σε Εξέλιξη" alt="Σε Εξέλιξη" ></a><a href="torrents.php?cat=17"><img src="cat_pics/fullmetal-icon.png" border="0" title="Αρχείο Υποτίτλων .ass" alt="Αρχείο Υποτίτλων .ass" ></a><br></p></td>
</tr>
</table>
</td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;RSS&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><ul>
<center>
<a href="/backend.php?op=last"><img src="themes/Pitch_Black/pics/rss.gif" border="0" alt="RSS" title="RSS" /></a>
<br />
<a href="http://www.bloglines.com/sub/%2Fbackend.php%3Fop%3Dlast"><img src="themes/Pitch_Black/pics/bloglines.gif" border="0" alt="Bloglines" title="Bloglines" /></a>
<br />
<a href="http://my.msn.com/addtomymsn.armx?id=rss&amp;ut=%2Fbackend.php%3Fop%3Dlast&amp;ru="><img src="themes/Pitch_Black/pics/mymsn.gif" border="0" alt="My MSN" title="My MSN" /></a>
<br />
<a href="http://add.my.yahoo.com/rss?url=%2Fbackend.php%3Fop%3Dlast"><img src="themes/Pitch_Black/pics/myyahoo.gif" border="0" alt="My Yahoo!" title="My Yahoo!" /></a>
<br />
<a href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=%2Fbackend.php%3Fop%3Dlast"><img src="themes/Pitch_Black/pics/newsgator.gif" border="0" alt="Newsgator" title="Newsgator" /></a>
<br />
<a href="http://www.google.com/ig/add?feedurl=%2Fbackend.php%3Fop%3Dlast"><img src="themes/Pitch_Black/pics/googlereader.gif" border="0" alt="Google Reader" title="Google Reader" /></a>
<br />
<center>
</ul>
</td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Ώρα&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><center>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="180" height="100" id="2" align="middle">
<param name="movie" value="clock143.swf" />
<param name="quality" value="high" />
<param name="scale" value="exactfit" />
<param name="wmode" value="transparent" />
<param name="menu" value="false">
<embed src="clock143.swf" quality="high" scale="exactfit" wmode="transparent" width="180" height="100" name="2" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</center>
</td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><table class="tablebg" width="100%" cellspacing="0">
	<caption><div class="cap-left"><div class="cap-right">&nbsp;Διαφημίσεις&nbsp;</div></div></caption>			<tr valign="middle">
			<td  class="row3" ><center>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="180" height="150" id="2" align="middle">
<param name="movie" value="bannernow.swf" />
<param name="quality" value="high" />
<param name="scale" value="exactfit" />
<param name="wmode" value="transparent" />
<param name="menu" value="false">
<embed src="bannernow.swf" quality="high" scale="exactfit" wmode="transparent" width="180" height="150" name="2" align="middle" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</center>
</td></tr>
		<tr>
		<td class="cat" colspan="7" valign="middle" align="center"></td>
	</tr>
	</table>
<br clear="all" /><script type="text/javascript" src="js/glossy.js"></script></td></tr></table><div id="wrapfooter">
<span class="gensmall"> <!-- Feel free to add you custom disclaimer or copyright notice here -->
<!-- YOU ARE NOT ALLOWED TO EDIT THE FOLLOWING COPYRIGHT NOTICE!!! -->
<font color=" grey">Κανένα απο τα αρχεία που εμφανίζονται εδώ δεν φιλοξενούνται στον τρέχοντα διακομιστή.<br>
Δεν φέρουμε ευθύνη για τις αναρτήσεις, ή οποιεσδήποτε πράξεις των χρηστών.<br>
Ιχνηλάτης phpMyBitTorrent (c) 2005-2013. <a href="http://phpmybittorrent.com"><font color=" white">phpMyBitTorrent Team. </a><font color=" grey"><br>
Με επιφύλαξη παντός δικαιώματος. (c) 2009-2013. <font color=" white"> http://giorgatzelos.cwahi.net <font color=" black"><br>
<font color=" grey">Δημιουργήθηκε σε 0.23 δευτερόλεπτα.

<!-- END OF COPYRIGHT NOTICE -->

</span><br /><br /> <span class="copyright">


</span>
</div>



</td>
</tr>
</table>

<script type="text/javascript">
  (function() {
    var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
    po.src = 'https://apis.google.com/js/plusone.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
  })();
</script>
<!-- Start Quantcast tag -->
<script type='text/javascript'>
_qoptions={
qacct:'p-ef5r5fFc32Lmo'
};
</script>
<script type='text/javascript' src='http://edge.quantserve.com/quant.js'></script>
<noscript>
<a href='http://www.quantcast.com/p-ef5r5fFc32Lmo' target='_blank'><img src='http://pixel.quantserve.com/pixel/p-ef5r5fFc32Lmo.gif' style='display: none;' border='0' height='1' width='1' alt='Quantcast'></a>
</noscript>
<!-- End Quantcast tag -->
<!-- Start of StatCounter Code -->
<script type='text/javascript'>
var sc_project=4037539;
var sc_invisible=1;
var sc_partition=31;
var sc_click_stat=1;
var sc_security='67a4631e';
var sc_remove_link=1;
</script>
<script type='text/javascript' src='http://www.statcounter.com/counter/counter_xhtml.js'></script><noscript><div class='statcounter'><img class='statcounter' src='http://c.statcounter.com/4037539/0/67a4631e/1/' alt='StatCounter.Com'></div></noscript>
<!-- End of StatCounter Code -->
<script type='text/javascript'>
var gaJsHost = (('https:' == document.location.protocol) ? 'https://ssl.' : 'http://www.');
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type='text/javascript'>
var pageTracker = _gat._getTracker('UA-438725-2');
pageTracker._setDomainName('.cwahi.net');
pageTracker._trackPageview();
</script></body>
</html>
Reply With Quote
  #4  
Old 6th August 2013, 17:17
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
You problem lies here where you have 2 tables
PHP Code:
print("\n\n\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\"><tr>\n");
print(
"<td width=\"auto\" valign=\"top\">\n");
print(
"<table width=\"auto\"><tr><td align=\"center\">\n");
echo
"<tr><td align=\"center\">\n"
You well need to make sure you set your table size in all tables
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #5  
Old 6th August 2013, 18:26
Giorgatzelos's Avatar
Giorgatzelos Giorgatzelos is offline
Senior Member
 
Join Date: Nov 2009
Greece
Posts: 300
Default
Thanks Joe, after a bit editing i managed to make it show the way i want...can you also provide the divx mod of btmanager for pmbt?
Reply With Quote
  #6  
Old 6th August 2013, 18:33
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
no
BT.Manager and phpmybitotrrent work completely defrent
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
The Following User Says Thank You to joeroberts For This Useful Post:
Giorgatzelos (6th August 2013)
  #7  
Old 6th August 2013, 18:56
Giorgatzelos's Avatar
Giorgatzelos Giorgatzelos is offline
Senior Member
 
Join Date: Nov 2009
Greece
Posts: 300
Default
Any idea how i could succeed it Streamcloud maybe?
Reply With Quote
  #8  
Old 30th April 2016, 23:24
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
looking for this mod is it around anywhere? also the divx if its around cheers
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote
  #9  
Old 1st May 2016, 14:38
joeroberts's Avatar
joeroberts joeroberts is offline
BT.Manager Owner
 
Join Date: Jan 2008
United States
Posts: 2,113
Default
I do have both but they have not been converted to BT.Manager
__________________
Do not ask me to help you work on your site that is not phpMyBitTorrent
Do not ask me to make a mod for any other source
Do not Ask me to setup your site.
I will no longer help you setup your site, there is a setup script if you have trouble with it post in the forum here or in BT.Manager™ forum
My Current Demo is here http://demo.btmanager.org/
Reply With Quote
  #10  
Old 2nd May 2016, 19:08
daffy's Avatar
daffy daffy is offline
Senior Member
 
Join Date: Mar 2009
United Kingdom
Posts: 550
Default
iv got the youtube one now im working with, cant find the divx one tho if you fancy sharing it bud?
__________________
"FFS PPL READ GOD DAMMIT, WHAT AM I GOOGLE?"
"I Kill You!" simples


http://i.imgur.com/DtcRfH5.gif

I also Setup And Modify Trackers PM For Details
Reply With Quote
Reply

Tags
edit , youtubephp

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



All times are GMT +2. The time now is 18:35. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.