Jump to content

more help


blankextacy

Recommended Posts

im also having trouble making the code below work it works but now how i want it to the video plays under the description/play button (http://www.revo-online.com/gdmovies/fights.php) as u can see the unwanted stuff is above the video i want the video to play alone with the other code im going to add in later could some one modify it so it removes the play button/pic/description[code]
    <?php
if (!$view) {
print "Please note: Mozilla Firefox is required to view this site properly</font><br><br>
<table>
<tr><td width=100><b><u>Name</td><td width=100><b><u>Picture</td><td width=50><b><u>Description</td><td

width=50><td><b><u>Submitted</td><td width=50><td><b><u>Options</td></tr>";

$videos = mysql_query("select * from videos where type='fight' order by id");
while ($video = mysql_fetch_array($videos)) {
print "<tr><td>$video[name]</td><td><p><img src=\"{$video['pic']}\" /></p></td><td>$video[desc]</td><td

width=50><td>$video[submitted]</td><td width=50><td>- <A href=fights.php?view=$video[id]>Play</a></td></tr>";
}
print "</table>";
}

if ($_GET['view']) {
$ttt = $_GET['view'];
$video = mysql_fetch_array(mysql_query("select * from videos where id=$ttt"));
if (empty ($video[id])) {
print "No such video. Go back to the <a href=fights.php>videos</a>.";
include("footer.php");
exit;
}
if ($video[type] != 'fight') {
print "That's not a fight video. Go back to the <a href=fights.php>videos</a>.";
include("footer.php");
exit;
} else {
print "<embed src=\"{$video['link']}\"  type='application/x-mplayer2' width='300' height='300' ShowControls='1'

ShowStatusBar='0' loop='true' EnableContextMenu='0' autostart='true' DisplaySize='0'

pluginspage='http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/'></embed>";
 
}

}

?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/24724-more-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.