blankextacy Posted October 22, 2006 Share Posted October 22, 2006 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] <?phpif (!$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 More sharing options...
JasonLewis Posted October 22, 2006 Share Posted October 22, 2006 well firstly change this line:[code=php:0]if (!$view) {[/code]to this:[code=php:0]if(!isset($_GET['view'])){[/code]that should do it...i think. oh and your link is wrong, its .net not .com lol. Link to comment https://forums.phpfreaks.com/topic/24724-more-help/#findComment-112584 Share on other sites More sharing options...
blankextacy Posted October 22, 2006 Author Share Posted October 22, 2006 THANK YOU BE MY MASTER? Link to comment https://forums.phpfreaks.com/topic/24724-more-help/#findComment-112586 Share on other sites More sharing options...
JasonLewis Posted October 22, 2006 Share Posted October 22, 2006 np... lol. just double check your code, then double check again... it always helps cuz usually its something really small. Link to comment https://forums.phpfreaks.com/topic/24724-more-help/#findComment-112590 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.