Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 04-16-2005, 04:30 PM   #1
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Seach Not Working For Me. Link to the sig rotator thread.

Please post it here.
__________________
Care about me?
Who?
Me!
Who?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 04:34 PM   #2
MikeVega
**Porntrepreneur**
 
MikeVega's Avatar
 
Industry Role:
Join Date: Jul 2004
Location: New York
Posts: 12,788
you can do that ...have your sig rotate through banners ... I have to have my brother write that for me ...
__________________


Mike Vega-ICQ:253868499-AIM:mikeydicevega
MikeVega is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 04:34 PM   #3
sickkittens
I am a meat popsicle.
 
Join Date: Jul 2002
Posts: 25,100
Here ya go - http://www.gofuckyourself.com/showthread.php?t=456666
__________________

HIGHEST PAYOUTS FOR NO-CONSOLE TOURS IN THE ENTIRE INDUSTRY!

THIS SIG CAN BE YOURS FOR $200 - ICQ: 78881543
sickkittens is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 04:38 PM   #4
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Yea its possible.
Sick kittens on my ignore list you go. How stupid do you think people are when you are linking to the same thread as the one in my browser. If you are going to be a jackass and try to be funny at least get it right.
__________________
Care about me?
Who?
Me!
Who?

Last edited by Alex; 04-16-2005 at 04:40 PM..
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 04:48 PM   #5
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Bump for me
__________________
Care about me?
Who?
Me!
Who?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:08 PM   #6
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
First page bump
__________________
Care about me?
Who?
Me!
Who?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:09 PM   #7
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
ill icq it later
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:10 PM   #8
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Quote:
Originally Posted by SmokeyTheBear
ill icq it later
I found the text file you posted a while ago but its 404 now.
__________________
Care about me?
Who?
Me!
Who?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:12 PM   #9
DamageX
Marketing & Strategy
 
DamageX's Avatar
 
Industry Role:
Join Date: Jun 2001
Location: Former nomad
Posts: 14,293
Quote:
Originally Posted by sickkittens

Hahaha, you got me with that one. Funny, good thing I got around to closing the browser window right after 'Hey everybody!"
__________________
Whitehat is for chumps

If you don't do it, somebody else will - true story!
DamageX is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:20 PM   #10
sickkittens
I am a meat popsicle.
 
Join Date: Jul 2002
Posts: 25,100
Quote:
Originally Posted by Alex
Yea its possible.
Sick kittens on my ignore list you go. How stupid do you think people are when you are linking to the same thread as the one in my browser. If you are going to be a jackass and try to be funny at least get it right.
I truly apologize for doing that everyone. Please forgive me.
__________________

HIGHEST PAYOUTS FOR NO-CONSOLE TOURS IN THE ENTIRE INDUSTRY!

THIS SIG CAN BE YOURS FOR $200 - ICQ: 78881543
sickkittens is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:24 PM   #11
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
Code:
<?php




	$folder = '.';


        $extList = array();
	$extList['gif'] = 'image/gif';
	$extList['jpg'] = 'image/jpeg';
	$extList['jpeg'] = 'image/jpeg';
	$extList['png'] = 'image/png';
	


$img = null;

if (substr($folder,-1) != '/') {
	$folder = $folder.'/';
}

if (isset($_GET['img'])) {
	$imageInfo = pathinfo($_GET['img']);
	if (
	    isset( $extList[ strtolower( $imageInfo['extension'] ) ] ) &&
        file_exists( $folder.$imageInfo['basename'] )
    ) {
		$img = $folder.$imageInfo['basename'];
	}
} else {
	$fileList = array();
	$handle = opendir($folder);
	while ( false !hahahaha ( $file = readdir($handle) ) ) {
		$file_info = pathinfo($file);
		if (
		    isset( $extList[ strtolower( $file_info['extension'] ) ] )
		) {
			$fileList[] = $file;
		}
	}
	closedir($handle);

	if (count($fileList) > 0) {
		$imageNumber = time() % count($fileList);
		$img = $folder.$fileList[$imageNumber];
	}
}

if ($img!=null) {
	$imageInfo = pathinfo($img);
	$contentType = 'Content-type: '.$extList[ $imageInfo['extension'] ];
	header ($contentType);
	readfile($img);
} else {
	if ( function_exists('imagecreate') ) {
		header ("Content-type: image/png");
		$im = @imagecreate (100, 100)
		    or die ("Cannot initialize new GD image stream");
		$background_color = imagecolorallocate ($im, 255, 255, 255);
		$text_color = imagecolorallocate ($im, 0,0,0);
		imagestring ($im, 2, 5, 5,  "IMAGE ERROR", $text_color);
		imagepng ($im);
		imagedestroy($im);
	}
}

?>
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:26 PM   #12
Alex
So Fucking Banned (YEA!!)
 
Join Date: Jun 2004
Posts: 10,963
Thanks
Found it just a min ago on some other forum.
__________________
Care about me?
Who?
Me!
Who?
Alex is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:26 PM   #13
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
all you need to do is replace the hahahaha once , it should be two ='s like this ==
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 04-16-2005, 07:29 PM   #14
SmokeyTheBear
►SouthOfHeaven
 
SmokeyTheBear's Avatar
 
Join Date: Jun 2004
Location: PlanetEarth MyBoardRank: GerbilMaster My-Penis-Size: extralarge MyWeapon: Computer
Posts: 28,609
for those that are also interested you just put that code above in a file called yoursig.php ( first replace the hahahaha with == and then put all the images you want to rotate in the same folder and call it like<img src=yoursig.php>
__________________
hatisblack at yahoo.com
SmokeyTheBear is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.