Project 1999

Go Back   Project 1999 > General Community > Off Topic

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 07-24-2013, 04:59 AM
Smedy Smedy is offline
Planar Protector

Smedy's Avatar

Join Date: Mar 2011
Posts: 4,577
Default Help with PHP code, any coders?

Hi,

I've updated my radio to a newer version and the html pages that are being output are different, i can't remember how to fix these things i did this back in 2006.

Bascially it's plain html being output from the shoutcast server and i need to display certain data on a webpage, and strip away the rest.

Here's the old php that worked with the old shoutcast version

Code:
$song00 = ereg_replace("</b></td>.*", "", ereg_replace(".*Current Song: </font></td><td><font class=default><b>", "", $page));
That replace all data on index.html so that current song is only data displayed

Here's the new index.html code

Code:
<html><head>****** http-equiv="Content-Language" content="en-us">****** http-equiv="Content-Type" content="text/html; charset=UTF-8">****** http-equiv="Pragma" content="no-cache">****** http-equiv="Expires" content="Mon, 01 Jan 1990 12:00:00 GMT"><title>SHOUTcast Administrator</title><link href="index.css" rel="stylesheet" type="text/css"></head><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"><font class="default"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td height="50"><font class="logo">&nbsp;SHOUTcast DNAS Status</font></td></tr><tr><td height="14" align="right"><font class="ltv"><a target="_blank" id="ltv" href="http://www.shoutcast.com/">SHOUTcast Server v2.0.0.29/win64</a>&nbsp;</font></td></tr><tr><td class="thr" align="center"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center"><font class="tnl"><a id="tnl" href="index.html?sid=1">Status</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" href="played.html?sid=1">Song History</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" href="listen.pls?sid=1">Listen</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" target="_blank" href="home.html?sid=1">Stream URL</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" href="admin.cgi?sid=1">Admin Login</a></font></td></tr></table></td></tr></table><br><table cellpadding="5" cellspacing="0" border="0" width="100%"><tr><td class="tsp" colspan="2" align="center"><font class="st">Current Stream Information</font></td></tr></table><br><table cellpadding="2" cellspacing="0" border="0" align="center"><tr><td width="120" valign="top"><font class="default">Server Status: </font></td><td><font class="default"><b>Server is currently up and public (YP connected)</b></td></tr><tr><td valign="top"><font class="default">Stream Status: </font></td><td><font class="default"><b>Stream is up at 96 kbps with 2 of 32 listeners (1 unique)</b></td></tr><tr><td valign="top"><font class="default">Listener Peak: </font></td><td><font class="default"><b>4</b></td></tr><tr><td valign="top"><font class="default">Average Listen Time: </font></td><td><font class="default"><b>9 minutes 8 seconds </b></td></tr><tr><td valign="top"><font class="default">Stream Name: </font></td><td><font class="default"><b>Radio | Jonnyeriksson.com</b></td></tr><tr><td valign="top"><font class="default">Content Type: </font></td><td><font class="default"><b>audio/mpeg</b></td></tr><tr><td valign="top"><font class="default">Stream Genre: </font></td><td><font class="default"><b>Ambient</b></td></tr><tr><td valign="top"><font class="default">Stream URL: </font></td><td><font class="default"><b><a href="http://jonnyeriksson.com/radio">http://jonnyeriksson.com/radio</a></b></td></tr><tr><td valign="top"><font class="default">Current Song: </font></td><td><font class="default"><b><a href="currentsong?sid=1">Lunarbeam - Autumn (Jon Medina Remix)</a></b></td></tr><tr><td valign="top"><font class="default">Next Song: </font></td><td><font class="default"><b><a href="nextsong?sid=1">Will B - Upgrade (Temple One Remix)</a></b></td></tr></table></font></body></html>
Heres the second one, where i want to only display the tracks played and strip the rest

php code

Code:
$played_html= ereg_replace('<x>','|-|',ereg_replace('</tr>','',ereg_replace('</td><td>','<x>',ereg_replace('<tr><td>','',ereg_replace('</tr>','</tr>' . $lf,ereg_replace('-->','--]',ereg_replace('<!--','[!--',ereg_replace('</table><br />.*','',ereg_replace('.*<b>Current Song</b></td></tr>','',$played_html)))))))));
Heres the played.html

Code:
<html><head>****** http-equiv="Content-Language" content="en-us">****** http-equiv="Content-Type" content="text/html; charset=UTF-8">****** http-equiv="Pragma" content="no-cache">****** http-equiv="Expires" content="Mon, 01 Jan 1990 12:00:00 GMT"><title>SHOUTcast Administrator</title><link href="index.css" rel="stylesheet" type="text/css"></head><body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"><font class="default"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td height="50"><font class="logo">&nbsp;SHOUTcast DNAS Status</font></td></tr><tr><td height="14" align="right"><font class="ltv"><a target="_blank" id="ltv" href="http://www.shoutcast.com/">SHOUTcast Server v2.0.0.29/win64</a>&nbsp;</font></td></tr><tr><td class="thr" align="center"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td align="center"><font class="tnl"><a id="tnl" href="index.html?sid=1">Status</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" href="played.html?sid=1">Song History</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" href="listen.pls?sid=1">Listen</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" target="_blank" href="home.html?sid=1">Stream URL</a></font></td><td align="center"><font class="tnl">&nbsp;|&nbsp;</font></td><td align="center"><font class="tnl"><a id="tnl" href="admin.cgi?sid=1">Admin Login</a></font></td></tr></table></td></tr></table><br><table class="default" border="0" cellpadding="2" cellspacing="2"><tr><td>Played @</td><td><b>Song Title</b></td></tr><tr><td>10:49:55</td><td>Will B - Upgrade (Temple One Remix)<td><b>Current Song</b></td></tr><tr><td>10:40:01</td><td>Lunarbeam - Autumn (Jon Medina Remix)</tr><tr><td>10:33:29</td><td>Toby Hedges - Mirai (Original Mix)</tr><tr><td>10:27:19</td><td>C Systems - Close My Eyes (Lemon and Einar K Remix)</tr><tr><td>10:19:35</td><td>Mango & Kazusa - Asphalt Lines (Original Mix)</tr><tr><td>10:10:32</td><td>Darren Tate - When The Morning Comes (Original Mix)</tr><tr><td>10:03:21</td><td>BXT - Sirius (Original Mix)</tr><tr><td>09:58:09</td><td>Johan Malmgren - Come Back (Original Mix)</tr><tr><td>09:57:24</td><td>Johan Malmgren - Come Back (Original Mix)</tr><tr><td>09:56:18</td><td>Johan Malmgren - Come Back (Original Mix)</tr></table><br></font></body></html>
anyone have any ideas, thanks.
__________________
Quote:
Originally Posted by Slathar View Post
you clean plaque off peoples teeth for a living and are only able to do that because your daddy hired you. your waist is also wider than your shoulders and you’re 5’2.
Videos
Wipe it clean.
Closed Thread


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 04:48 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.