Jump to content

Help..?


CAPTAINCAPSLOCK

Recommended Posts

[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">&nbsp;

<?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">
<?php
echo '';
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">&nbsp;Songs:</font><font size="4" color="red"> <b>'.$filecount.'</b></font>'; //display the number of files
echo '</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
Share on other sites

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

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">&nbsp;

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

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

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