iPodHacking Community
Home Forum Wiki Themes Register Members List Mark Forums Read
 

Go Back   iPodHacking Community > General > General Discussion

Sponsored Links

Notices

General Discussion The place to be.

Reply
 
LinkBack Thread Tools
Old 08-16-2008   #1 (permalink)
H3X
Super Mod
 
H3X's Avatar
 
Join Date: Dec 2007
Posts: 216
H3X is on a distinguished road

Default My Signature

It's real =p.

If enough people ask to make a tutorial I will. I used PHP, didn't use SQL.

The background isn't actually transparent, I just made it the color of the background on these forums.
__________________

Last edited by H3X; 08-16-2008 at 02:20 AM.
H3X is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored Links
Old 08-16-2008   #2 (permalink)
Banned.
 
Join Date: Dec 2007
Location: House
Age: 15
Posts: 2,264
xBrandonx has a spectacular aura aboutxBrandonx has a spectacular aura aboutxBrandonx has a spectacular aura about

Send a message via AIM to xBrandonx Send a message via MSN to xBrandonx
Default Re: My Signature

Wow, thats sick.
xBrandonx is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old 08-16-2008   #3 (permalink)
Psychotic Mod
 
psychotic.grape's Avatar
 
Join Date: Mar 2008
Location: croydon, london, england
Posts: 833
psychotic.grape is a jewel in the roughpsychotic.grape is a jewel in the roughpsychotic.grape is a jewel in the roughpsychotic.grape is a jewel in the rough

Send a message via AIM to psychotic.grape Send a message via MSN to psychotic.grape
Default Re: My Signature

tutorial please?
__________________
Newest:

Favourites:

Check Out GFX Central.
Want Warez? Visit WarezVB.
psychotic.grape is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old 08-16-2008   #4 (permalink)
I'm ambiguous
 
AmbiquitY's Avatar
 
Join Date: Feb 2008
Location: B-E-L-G-I-U-M
Posts: 358
AmbiquitY will become famous soon enoughAmbiquitY will become famous soon enough

Default Re: My Signature

yes tutorial!
(You do mean the last ip that saw this.. Thing right?)
__________________
My present for Brandon! =D
AmbiquitY is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old 08-16-2008   #5 (permalink)
H3X
Super Mod
 
H3X's Avatar
 
Join Date: Dec 2007
Posts: 216
H3X is on a distinguished road

Default Re: My Signature

Yeah. Also note that it's not your IP, it's the person who last viewed the image.
__________________
H3X is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old 08-17-2008   #6 (permalink)
Wonderkid
 
Greg's Avatar
 
Join Date: Dec 2007
Location: Derbyshire, UK Loves: Elisha Cuthbert
Age: 16
Posts: 106
Greg is on a distinguished road

Default Re: My Signature

*Hacks last IP that saw the image*

__________________
Greg is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old 08-17-2008   #7 (permalink)
QC > US
 
Kedzi's Avatar
 
Join Date: Dec 2007
Location: Québec
Age: 16
Posts: 1,148
Kedzi is a jewel in the roughKedzi is a jewel in the roughKedzi is a jewel in the roughKedzi is a jewel in the rough

Send a message via AIM to Kedzi Send a message via MSN to Kedzi
Default Re: My Signature

Coool !
That's a dynamic signature right ?
Then:
to output someone's browser, IP, and resolved IP? Use this in your code:
Code:
// get IP and resolve IP
$ip = $REMOTE_ADDR;
$resolved = gethostbyaddr ($REMOTE_ADDR);

// check for non resolve of IP and rip domain if resolved
if ($resolved == $ip) {
$isp = ".. Can't Resolve IP";
}
else
{
$str = preg_split("/\./", $resolved);
$i = count($str);
$x = $i - 1;
$n = $i - 2;
$isp = $str[$n] . "." . $str[$x];
}

// Simple OS Detection
$os = $HTTP_USER_AGENT;
$oslist = Array (

// Windows
"Win|Windows",
"Win16|Windows",
"Win95|Windows 95",
"Win98|Windows 98",
"WinME|Windows ME",
"Win32|Windows",
"WinNT|Windows NT",
"Windows 3.1|Windows 3.1",
"Windows 95|Windows 95",
"Windows CE|Windows CE",
"Windows 98|Windows 98",
"Windows ME|Windows ME",
"Windows NT|Windows NT",
"Windows NT 5.0|Windows 2000",
"Windows NT 5.1|Windows XP",

// Macintosh
"Mac_68000|MacOS m68K",
"Mac_68K|MacOS m68K",
"Mac_PowerPC|MacOS PPC",
"Mac_PPC|MacOS PPC",
"Macintosh|MacOS",

// Unices
"X11|UNIX",
"BSD|BSD",
"SunOS|SunOS",
"IRIX|IRIX",
"HP-UX|HP-UX",
"AIX|AIX",
"QNX|QNX",
"SCO_SV|SCO UNIX",
"FreeBSD|FreeBSD",
"NetBSD|NetBSD",

// Linux
"Linux|Linux",
"Debian|Debian GNU/Linux",

// Other
"BeOS|BeOS",
"OS/2|OS/2",
"AmigaOS|AmigaOS",

);

foreach ($oslist as $osnow) {
$osnow = explode ("|", $osnow);
if (eregi ($osnow[0], $os)) {
$endos = $osnow[1];
$check = "No";
} elseif ($check != "No") {
$endos = "Unknown";
}
}

/*
to output the OS, use $endos
to output the IP, use $ip
to output the resolved IP, use $resolved
__________________

Last edited by Kedzi; 08-17-2008 at 06:01 PM.
Kedzi is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Old 08-17-2008   #8 (permalink)
Nothing Else Matters


 
Rockstar's Avatar
 
Join Date: Dec 2007
Location: White House
Posts: 712
Rockstar is just really niceRockstar is just really niceRockstar is just really niceRockstar is just really niceRockstar is just really nice

Send a message via ICQ to Rockstar Send a message via AIM to Rockstar Send a message via MSN to Rockstar Send a message via Yahoo to Rockstar Send a message via Skype™ to Rockstar
Default Re: My Signature

I want one!!!!!!!!!! lol That's so sick!
__________________
Rockstar is online now  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Sponsored Links
Reply

Thread Tools

 
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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
IPH Signature and Avatar aman_9 Shop District 0 08-08-2008 02:51 AM
[Help] With a Signature. CHAINS Graphics 0 04-21-2008 02:03 PM
quoting in signature xiaden Site Support & Help 5 02-01-2008 12:36 AM


Sponsored Links

New To iPodHacking.com? Need Assistance?

All times are GMT. The time now is 11:21 AM.


Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
iPodHacking is a Member of the R9V Network

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62