This is originally posted by lordheinz .. so credits to him ..
i just make a simple code so you can customize the color of links ..
Preview
[spoiler]proceed [url=http://friendster.com/mhedge]here[/url] ..

[/spoiler]
so lets start ..
first you need a hosting site, but not ripway and supports php files .. you can go [url=http://theftalk.com/t44339-%3CTutorial%3E-Hosting-site%28php-supported-250-mb%29.html]here[/url] or [url=http://www.000webhost.com/78457.html]here[/url]..
why not ripway?

[spoiler]because the code will not work at ripway .. the feature we will use is not supported by this hosting site

[/spoiler]
after signing up, log in ..
then after that, go to ur files then make a new file .. name it as [b]online.[i]php[/i][/b]
make sure the extension is correct ! [i].php[/i]
paste this inside, do not change anything unless the bolded ..
[spoiler]<html lang="en">
<head>
<meta http-equiv="refresh" content="60">
<!-- you can change the 60
This is the amount of time,
in seconds, until the
browser should reload the current page.
-->
<title>Online @ FTalk</title>
<style type="text/css">
body{
color:#666666;
font-family:century gothic;
font-size:12px;;
background-color:transparent;
}
a{/* Normal link */
color:#[b]??????[/b];
font-family:[b]??????[/b];
font-size:[b]??????[/b];
text-decoration:none;
}
a:hover{/* Hover link */
color:#[b]??????[/b];
font-family:[b]??????[/b];
font-size:[b]??????[/b];
}
</style>
</head>
<body>
<!-- used to display the users online -->
<?php
// do not touch anything here
$online = file_get_contents("http://theftalk.com/extern.php?action=online_full");
echo $online;
?>
</body>
</html>[/spoiler]
after that, you need the code to apply it..
paste this code in your onload handler, edit the bolded ..
[spoiler]addBox("RIGHT","Online @ FTalk","<iframe id='online' name='online' allowtransparncy='true' width='300px' height='300px' frameborder='0' src='[b]URL OF ONLINE.PHP[/b]'></iframe><button onClick=\"online.src='document.getElementById(online).src'\">Reload</button>","ftalkers","14");[/spoiler]
finish all steps? view your profile! any question? post here!
Last edited by mhedge (2008-09-24 21:38:31)