CAPTAINCAPSLOCK Posted October 21, 2006 Share Posted October 21, 2006 [color=teal]Well, a friend and I are trying to make a VDJ for our Counter-Strike:Source server. (Basically we want to put music on our site and link it to our server, so that people can listen to music while they're in the game.) When we try to go to www.KingsofSlaughter.com/vdj.php and click a song, it gives us an error. First the error was on line 7, then 9, then 13, and now it's on 9 again. I'm pretty sure the error is in the play.php. We're basically PHP newbs so I'm not sure if you guys could even help us but.. any ideas? Here are the PHP files.[/color]Play.php:[code]<title>Virtual DJ</title><body bgcolor="#000000" link="#FFFFFF" vlink="#FFFFFF"><font color="#FFFFFF" size="4"> <?php>echo "<table border=0 width=350 align=left cellspacing=3><tr><td align=center colspan=2><a href="http://www.kingsofslaughter.com/vdj.php"><img src="http://www.kingsofslaughter.com/vdj-playing.jpg" border=0></a>;</td></tr><tr><td align=right bgcolor=#222222><font color=#FFFFFF size=4>";$string = $_SERVER['QUERY_STRING'];$patterns[0] = '/%20/';$patterns[1] = '/.mp3/';$patterns[1] = '/.MP3/';$replacements[0] = ' ';$replacements[1] = ' ';$replacements[2] = ' ';$printname = preg_replace($patterns, $replacements, $string);$letters = $printname;$letters = explode(" - ",$letters);echo ' Artist:</td><td bgcolor=#111111 align=center><font color="#FFFFFF" size=5><b>'.$letters[0].'</b></td></tr><tr><td align=right bgcolor=#222222><font color="#FFFFFF" size=4> Song Title:</td><td bgcolor="#111111" align=center><font color="#FFFFFF" size=5>'.$letters[1].'</font></tr></td>';?><tr><td colspan=2><center><font size="2" color="#FFFFFF">(Allow 3-15 seconds for playback to begin. You may close this window at any time and it will not interupt playback)</font></center></td></tr><tr><td colspan=2><font size="4" color="#FFFFFF"><br>Type "<font color="red">STOP</font>" or <a href="stopped.php"><font color="red">Click Here</font></a> to stop playing at any time.</font></td></tr></table><EMBED SRC=http://www.KingsofSlaughter.com/vdj/mp3/<?php echo $_SERVER['QUERY_STRING']; ?> AUTOSTART=true HIDDEN=true LOOP=0></pre>[/code]Vdj.php:[code]<title>Virtual DJ</title><body bgcolor="#000000" link="#FFFFFF" vlink="#EEEEEE" alink="#FFFFFF" text="#FFFFFF"><table width="400" border="0"><tr><td colspan="1" align="center"><center><img src="http://kingsofslaughter.com/images/banner1.jpg"><font color="#FFFFFF"> <?phpecho '';echo ""; if ($handle = opendir('./mp3/')) { // read the current directory. Change the "." to the directory you need. $filecount = "0"; //reset the number of files while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { // remove the move up directory commands. (. and ..) $fileList[] = trim($file); // add the file to an array so it can be sorted easily. $filecount = $filecount + 1; //count the number of files } }print '<font size="3" color="#FFFFFF"> Songs:</font><font size="4" color="red"> <b>'.$filecount.'</b></font>'; //display the number of filesecho '</td></tr></table><table width="400" border="0">';echo '</td></tr><tr><td bgcolor="#222222"><font size="5" color="white"><b>Artist Name</b></font></td><td align="right" bgcolor="#222222"><font size="5" color="white"><b>Song Title</b></font></td></tr>'; sort ($fileList); // sort the file list in the array reset ($fileList); // go back to the top of the array while (list ($key, $val) = each ($fileList)) {$namedisplay = $val;$string = $namedisplay;$patterns[0] = '/%20/';$patterns[1] = '/.mp3/';$patterns[2] = '/.MP3/';$replacements[0] = ' ';$replacements[1] = ' ';$replacements[2] = ' ';$printname = preg_replace($patterns, $replacements, $string);$letters = $printname;$letters = explode(" - ",$letters);$recallme = $val;echo '<tr><td bgcolor="#111111"><a href="http://KingsofSlaughter.com/vdj/play.php?'.$val.'"><b>'.$letters[0].'</b></a></td><td bgcolor="#111111" align=right>';echo '<a href="http://KingsofSlaughter.com/vdj/play.php?'.$recallme.'">'.$letters[1].'</td></tr>'; } closedir($handle); }echo "</table>" ?></center>[/code] Link to comment https://forums.phpfreaks.com/topic/24618-help/ Share on other sites More sharing options...
Jocka Posted October 21, 2006 Share Posted October 21, 2006 in play.php where you echo on line 9. .just change all double quotes " to single ' INSIDE of the echo statement.. thats the problem :) Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112144 Share on other sites More sharing options...
CAPTAINCAPSLOCK Posted October 21, 2006 Author Share Posted October 21, 2006 Forgive me for my idiocy, but line 9 would be..which one? DX Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112150 Share on other sites More sharing options...
Jocka Posted October 21, 2006 Share Posted October 21, 2006 lol change this:[code]echo "<table border=0 width=350 align=left cellspacing=3><tr><td align=center colspan=2><a href="http://www.kingsofslaughter.com/vdj.php"><img src="http://www.kingsofslaughter.com/vdj-playing.jpg" border=0></a>;</td></tr><tr><td align=right bgcolor=#222222><font color=#FFFFFF size=4>";[/code]to this:[code]echo "<table border=0 width=350 align=left cellspacing=3><tr><td align=center colspan=2><a href='http://www.kingsofslaughter.com/vdj.php'><img src='http://www.kingsofslaughter.com/vdj-playing.jpg' border='0'></a></td></tr><tr><td align=right bgcolor=#222222><font color=#FFFFFF size=4>";[/code]that should do it Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112151 Share on other sites More sharing options...
CAPTAINCAPSLOCK Posted October 21, 2006 Author Share Posted October 21, 2006 Ok thank you very much.. I'll give it a try. Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112153 Share on other sites More sharing options...
CAPTAINCAPSLOCK Posted October 21, 2006 Author Share Posted October 21, 2006 Ok, I changed it to this and I still get that error on line 9 =\[code]<title>Virtual DJ</title><body bgcolor="#000000" link="#FFFFFF" vlink="#FFFFFF"><font color="#FFFFFF" size="4"> <?php>echo "<table border=0 width=350 align=left cellspacing=3><tr><td align=center colspan=2><a href='http://www.kingsofslaughter.com/vdj.php'><img src='http://www.kingsofslaughter.com/vdj-playing.jpg' border=0></a>;</td></tr><tr><td align=right bgcolor=#222222><font color=#FFFFFF size=4>";$string = $_SERVER['QUERY_STRING'];$patterns[0] = '/%20/';$patterns[1] = '/.mp3/';$patterns[1] = '/.MP3/';$replacements[0] = ' ';$replacements[1] = ' ';$replacements[2] = ' ';$printname = preg_replace($patterns, $replacements, $string);$letters = $printname;$letters = explode(" - ",$letters);echo ' Artist:</td><td bgcolor=#111111 align=center><font color="#FFFFFF" size=5><b>'.$letters[0].'</b></td></tr><tr><td align=right bgcolor=#222222><font color="#FFFFFF" size=4> Song Title:</td><td bgcolor="#111111" align=center><font color="#FFFFFF" size=5>'.$letters[1].'</font></tr></td>';?><tr><td colspan=2><center><font size="2" color="#FFFFFF">(Allow 3-15 seconds for playback to begin. You may close this window at any time and it will not interupt playback)</font></center></td></tr><tr><td colspan=2><font size="4" color="#FFFFFF"><br>Type "<font color="red">STOP</font>" or <a href="stopped.php"><font color="red">Click Here</font></a> to stop playing at any time.</font></td></tr></table><EMBED SRC=http://www.KingsofSlaughter.com/vdj/mp3/<?php echo $_SERVER['QUERY_STRING']; ?> AUTOSTART=true HIDDEN=true LOOP=0></pre>[/code] Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112154 Share on other sites More sharing options...
hostfreak Posted October 21, 2006 Share Posted October 21, 2006 Exactly what error are you getting? I don't seem to see it posted anywhere. Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112155 Share on other sites More sharing options...
akitchin Posted October 21, 2006 Share Posted October 21, 2006 never seen this tag before:[code]<?php>[/code] Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112156 Share on other sites More sharing options...
CAPTAINCAPSLOCK Posted October 21, 2006 Author Share Posted October 21, 2006 Ok. Sorry, I should have done that heh. When I go to http://www.kingsofslaughter.com/vdj.php and click on a song, it should either start playing or download, either way I'd know it's working. But I get this error..Parse error: parse error, unexpected T_ECHO in /home/content/h/o/c/hockeylife/html/play.php on line 9 Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112157 Share on other sites More sharing options...
hostfreak Posted October 21, 2006 Share Posted October 21, 2006 ^ I hope you know that akitchin was suggesting that <?php> isn't even a tag. Instead it should be:[code]<?phpcode here?>[/code]Fix that and it should solve your current error. Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112158 Share on other sites More sharing options...
akitchin Posted October 21, 2006 Share Posted October 21, 2006 indeed that's what i was implying. when you get a parse error, the usual tactic is to check the line in question first. if there are no conceivable errors there, look up line by line. bad coding on one line can cause a parse error on the line after by virtue of its ability to change the parsing flow.an exception is if you get unexpected $end. then you just make a mad search for unclose braces. Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112159 Share on other sites More sharing options...
CAPTAINCAPSLOCK Posted October 21, 2006 Author Share Posted October 21, 2006 TY!! It worked. Wow.. I tried 6 forums over the past week and this place gives me a reply within seconds lol. You guys are great, thanks again.edit: Typogasm. Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112160 Share on other sites More sharing options...
kalivos Posted October 21, 2006 Share Posted October 21, 2006 FYI: change[code]$patterns[1] = '/.MP3/';[/code]to[code]$patterns[2] = '/.MP3/';[/code]in play.php Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112164 Share on other sites More sharing options...
CAPTAINCAPSLOCK Posted October 21, 2006 Author Share Posted October 21, 2006 lol ty.. Btw, any suggestions on PHP tutorials? Link to comment https://forums.phpfreaks.com/topic/24618-help/#findComment-112192 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.