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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.