Shoutbox

My php nickname script - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: My php nickname script (/showthread.php?tid=49960)

My php nickname script by spokes on 09-03-2005 at 07:07 PM

Just made a script to make boxed nicknames like this

http://www.c-n.no-ip.com/nick.htm

don't know if this is on mess.be or anything else, my mate showed me how to make the nickname, so i made a script

EDIT : my example dsnt display on forums correctly, just check my msn name in my sig, theres an example


RE: My php nickname script by dylan! on 09-03-2005 at 07:10 PM

i like it...i use it;):P


RE: My php nickname script by absorbation on 09-03-2005 at 07:11 PM

may i have to sorce to use myself? ;)


RE: My php nickname script by Stigmata on 09-03-2005 at 07:12 PM

quote:
Originally posted by spokes
Just made a script to make boxed nicknames like this

http://www.c-n.no-ip.com/nick.htm

don't know if this is on mess.be or anything else, my mate showed me how to make the nickname, so i made a script

EDIT : my example dsnt display on forums correctly, just check my msn name in my sig, theres an example

yeah its on mess.be :)

(well sorta, it has all the nick in a box, not ever letter)
RE: My php nickname script by spokes on 09-03-2005 at 07:35 PM

yes, u may have source, and i think it looks better with every letter, but dsnt the way mess.be does need multi lines? mine uses wierd codes, mess.be uses ¯ and _ try gettin both of them above a letter using one line :p

code:
<?php

$input = $_GET['nick'];
$output = '';
for($i = 0; $i < strlen($input); $i++) {
    $output .= '[&#773;&#818;'.substr($input, $i, 1).'&#773;&#818;]';
}
$output=str_replace("[&#773;&#818; &#773;&#818;]"," ",$output);
echo $output;

?>


i can't get it to display properly in forums...
ill attach it

RE: My php nickname script by absorbation on 09-03-2005 at 07:58 PM

Uploaded to my site is the names database, thanks ;)