Seach Not Working For Me. Link to the sig rotator thread.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Alex
    So Fucking Banned (YEA!!)
    • Jun 2004
    • 10963

    #1

    Seach Not Working For Me. Link to the sig rotator thread.

    Please post it here.
    Care about me?
    Who?
    Me!
    Who?
  • MikeVega
    **Porntrepreneur**
    • Jul 2004
    • 12788

    #2
    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

    Comment

    • sickkittens
      I am a meat popsicle.
      • Jul 2002
      • 25100

      #3
      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

      Comment

      • Alex
        So Fucking Banned (YEA!!)
        • Jun 2004
        • 10963

        #4
        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.
        Last edited by Alex; 04-16-2005, 03:40 PM.
        Care about me?
        Who?
        Me!
        Who?

        Comment

        • Alex
          So Fucking Banned (YEA!!)
          • Jun 2004
          • 10963

          #5
          Bump for me
          Care about me?
          Who?
          Me!
          Who?

          Comment

          • Alex
            So Fucking Banned (YEA!!)
            • Jun 2004
            • 10963

            #6
            First page bump
            Care about me?
            Who?
            Me!
            Who?

            Comment

            • SmokeyTheBear
              ►SouthOfHeaven
              • Jun 2004
              • 28609

              #7
              ill icq it later
              hatisblack at yahoo.com

              Comment

              • Alex
                So Fucking Banned (YEA!!)
                • Jun 2004
                • 10963

                #8
                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?

                Comment

                • DamageX
                  Marketing & Strategy
                  • Jun 2001
                  • 14293

                  #9
                  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!

                  Comment

                  • sickkittens
                    I am a meat popsicle.
                    • Jul 2002
                    • 25100

                    #10
                    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

                    Comment

                    • SmokeyTheBear
                      ►SouthOfHeaven
                      • Jun 2004
                      • 28609

                      #11
                      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

                      Comment

                      • Alex
                        So Fucking Banned (YEA!!)
                        • Jun 2004
                        • 10963

                        #12
                        Thanks
                        Found it just a min ago on some other forum.
                        Care about me?
                        Who?
                        Me!
                        Who?

                        Comment

                        • SmokeyTheBear
                          ►SouthOfHeaven
                          • Jun 2004
                          • 28609

                          #13
                          all you need to do is replace the hahahaha once , it should be two ='s like this ==
                          hatisblack at yahoo.com

                          Comment

                          • SmokeyTheBear
                            ►SouthOfHeaven
                            • Jun 2004
                            • 28609

                            #14
                            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

                            Comment

                            Working...