PDA

View Full Version : HOW DO YOU CODE?



DMC
26-03-2006, 09:09 PM
Hi i just had a webmaster...she new how to code but she disided to quit and remove my radio and pages from my site...so...i need to know how to code could any one tell me on M.S.N
*Removed*
Thanks you guys my site is my life... Please don't ignore...


www.habztunes.com (http://www.habztunes.com) <<<<<had loads of pages

Edited by JoeyK. (Forum Moderator) - Please do not post your email address on the forum.

Lycan
26-03-2006, 09:10 PM
Woudn't think givving out your email is a good idea

but google it, its bound to have some instructions

DMC
26-03-2006, 09:21 PM
nope nothing

DMC
26-03-2006, 09:22 PM
Woudn't think givving out your email is a good idea

but google it, its bound to have some instructions


nope nothingf

mat64 (Forum Moderator) - Please don't double post, Simply edit your last post.

Lycan
26-03-2006, 09:22 PM
i havn't looked, but maybe theres one in the website Turtrial Secton

DMC
26-03-2006, 09:24 PM
il look i got 5 more mins on comp can u add me to MSN

dunce
26-03-2006, 09:36 PM
il look i got 5 more mins on comp can u add me to MSN

If you have Microsoft Front Page then just do random stuff on the first part, then click the 'HTML' tab, and it has everything coded for you :)

Lycan
26-03-2006, 09:37 PM
If you have Microsoft Front Page then just do random stuff on the first part, then click the 'HTML' tab, and it has everything coded for you :)

I think hes Mainly After the Radio Thing, But I'm Unsure

DMC
27-03-2006, 04:07 PM
I think hes Mainly After the Radio Thing, But I'm Unsure


Know How To Get Radio So It Says....

Current DJ:...
Listeners:...
Current Song:...
Can you give me HTML or code ... Or What Ever? Ty.

Lycan
27-03-2006, 04:08 PM
Thats Radio Stats isn't it? , Just google 'Radio Stats Script'

Always
27-03-2006, 04:24 PM
Radio stats is simple code

DMC
27-03-2006, 04:47 PM
Nope,Nothing

DMC
27-03-2006, 04:48 PM
Radio stats is simple code


If its simple,Tell me?

Css
27-03-2006, 04:51 PM
Find it your self...

www.google.com

Lycan
27-03-2006, 04:52 PM
Find it your self...

www.google.com (http://www.google.com)

Lol - theres Probebly Even a , Tutorial In the Website Tutorial Section ...

Grindie
27-03-2006, 04:54 PM
Try some of these?

http://www.habboxforum.com/showthread.php?t=143515

Css
27-03-2006, 04:54 PM
Pfft how could i forget that ? -.-

Lycan
27-03-2006, 04:56 PM
Try some of these?

http://www.habboxforum.com/showthread.php?t=143515

thats what the link is, ah well.. i just said Tutorials section... close enough!

Css
27-03-2006, 04:58 PM
Well since u do not have to abillity to follow instructions ::

Making Radio Stats Tutoial. Ideas from Danny (Luckyrare), thanks

First make a file called config_radio.php

Then edit it to make it include: PHP Code:



<?php

//////////////////////////////////////////////////////////////////////////////////////////////

// Dinghy Radio Stats Information

// Grabs the xml from your radio server and displays it in a iframe that refreshes every 30 seconds.
// ©Daniel Brown www.gmtt.co.uk
//////////////////////////////////////////////////////////////////////////////////////////////
//Configuration

$scdef = "NAME RADIO HERE"; // Default station name to display when server or stream is down

$scip = "IP HERE"; // ip or url of shoutcast server (DO NOT ADD HTTP:// don't include the port)

$scport = "PORT HERE"; // port of shoutcast server

$scpass = "PASS HERE"; // password to shoutcast server

//End configuration


?>



Then click save

After that, make a page called radio_stats.php

This page should include: PHP Code:


<?php


// Shoutcast Server Stats

// Parses shoutcasts xml to make an effective stats thing for any website

// ©2004-2005 Daniel Brown http://www.gmtt.co.uk
// Please refer to the readme file for use.

include('config_radio.php'); //you may edit this path to fit your server environment otherwise leave it alone

$scfp = fsockopen("$scip", $scport, &$errno, &$errstr, 30);

if(!
$scfp) {

$scsuccs=1;

echo''.$scdef.' is Offline';

}

if(
$scsuccs!=1){

fputs($scfp,"GET /admin.cgi?pass=$scpass&mode=viewxml HTTP/1.0\r\nUser-Agent: SHOUTcast Song Status (Mozilla Compatible)\r\n\r\n");

while(!feof($scfp)) {

$page .= fgets($scfp, 1000);

}

################################################## ################################################## ##################

/////////////////////////part 1 \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//define xml elements

$loop = array("STREAMSTATUS", "BITRATE", "SERVERTITLE", "CURRENTLISTENERS");

$y=0;

while(
$loop[$y]!=''){

$pageed = ereg_replace(".*<$loop[$y]>", "", $page);

$scphp = strtolower($loop[$y]);

$$scphp = ereg_replace("</$loop[$y]>.*", "", $pageed);

if($loop[$y]==SERVERGENRE || $loop[$y]==SERVERTITLE || $loop[$y]==SONGTITLE || $loop[$y]==SERVERTITLE)

$$scphp = urldecode($$scphp);


// uncomment the next line to see all variables

//echo'$'.$scphp.' = '.$$scphp.'<br>';

$y++;

}

//end intro xml elements

################################################## ################################################## ##################
################################################## ################################################## ##################
/////////////////////////part 2\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\ \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
//get song info and history

$pageed = ereg_replace(".*<SONGHISTORY>", "", $page);

$pageed = ereg_replace("<SONGHISTORY>.*", "", $pageed);

$songatime = explode("<SONG>", $pageed);

$r=1;

while(
$songatime[$r]!=""){

$t=$r-1;

$playedat[$t] = ereg_replace(".*<PLAYEDAT>", "", $songatime[$r]);

$playedat[$t] = ereg_replace("</PLAYEDAT>.*", "", $playedat[$t]);

$song[$t] = ereg_replace(".*<TITLE>", "", $songatime[$r]);

$song[$t] = ereg_replace("</TITLE>.*", "", $song[$t]);

$song[$t] = urldecode($song[$t]);

$dj[$t] = ereg_replace(".*<SERVERTITLE>", "", $page);

$dj[$t] = ereg_replace("</SERVERTITLE>.*", "", $pageed);

$r++;

}

//end song info


fclose($scfp);

}


//display stats

if($streamstatus == "1"){

//you may edit the html below, make sure to keep variable intact

echo'

<html>


<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META HTTP-EQUIV="REFRESH" CONTENT="30;URL=radio_stats.php">
<link rel=stylesheet href="" type="text/css">
<title>'
.$scdef.'</title>

</head>


<body text="verdana" bgcolor="#FFFFFF">





<p align="center"><center>


<font face="arial" size="2"><b>&nbsp;Server Name:</b>&nbsp;'
.$servertitle.'</font></p>

<font face="arial" size="2"><b>&nbsp;Listeners:</b>&nbsp;'.$currentlisteners.' / 20</font></p>


<font face="verdana" size="2" color=""><b>


Current Song:</b> '
.$song[0].'</font></p>

<b>



<font face="arial" size="2">
Past Songs:</font></b>
<font color=""><font face="verdana" size="2">
<p align="center">
<b>1.</b> '
.$song[1].'<BR>

<b>2.</b> '.$song[2].'<BR>

<b>3.</b> '.$song[3].'<BR>

</font>

<BR>
</p></p>
</body>


</html>'
;

}

if(
$streamstatus == "0")

{

//you may edit the html below, make sure to keep variable intact

echo'

<html>


<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META HTTP-EQUIV="REFRESH" CONTENT="30;URL=radio_stats.php">
<link rel=stylesheet href="" type="text/css">
<title>Radio Server Is Offline</title>
</head>


<body text="" bgcolor="">
Server Offline!
</body>


</html>'
;

}

?>




You may edit were it tell you to


If you like it, please rep Luckyrare™


Hope it helps


Dunko




[Edited By Partie2] (Forum Moderator) Stickered by partie2, great Job :)

Lycan
27-03-2006, 05:49 PM
What he said!

Splinter
27-03-2006, 06:14 PM
lmao that sites your life well its a pretty crap life then..

DMC
27-03-2006, 07:27 PM
Read...It Got freggin hacked,Dumb ***

mat64 (Forum Moderator) - Please don't avoid the forum filter.

Want to hide these adverts? Register an account for free!