Official London / Paris / Disneyland Paris Thread

Still haven't gotten my CD. I'm glad I have the flash drive, because this happened to me on my FIRST trip with ABD. I didn't get the info to order the CD (because it was not included back then).
Wow. That is really strange. I wonder if they messed up about you & Christy being roommates, & only sent one (to her). Have you called ABD to ask?

I really like that they gave us the jump drives too. I think Fred said it was an experiment, and I really think it's a great idea, being able to take the photos home with you, & see them right away. Although I do like playing the slide show on my TV (off the CD) better than on my computer.

Sayhello
 
For those that did not see, look who we ran into at the Swan/Dolphin Classic...

315032_2052192460562_1117025522_31819911_457575015_n.jpg
 
For those that did not see, look who we ran into at the Swan/Dolphin Classic...

315032_2052192460562_1117025522_31819911_457575015_n.jpg

It's me!!!!!!!!!

Nice shot Mike, had a great time riding Star Tours with you during the Great Rains.
 




Fancy! I thought that was just you updating it periodically. I was commenting on the one of you stalking Jodi Benson. ;)
There was a great photographer that took that. Rumor has it that he uses his Jedi powers! :thumbsup2

If anyone is feeling daring, here is the code to make you images to change every time they are viewed. The boards look like they use "single instance" of images on a page so that if the picture appears more than one on a page, the picture will remain the same across that page of the thread.

Code:
<?php

/*
	
	You have to be running your own php-capable web server or your 
	provider has to support php (most do).  -Mike
	INSTRUCTIONS
	1. Modify the $folder setting in the configuration section below.
	2. Add image types if needed (most users can ignore that part).
	3. Upload this file (rotate.php) to your webserver.  I recommend
	   uploading it to the same folder as your images.
	4. Link to the file as you would any normal image file, like this:

			<img src="http://example.com/rotate.php">

	5. You can also specify the image to display like this:

			<img src="http://example.com/rotate.php?img=gorilla.jpg">
		
		This would specify that an image named "gorilla.jpg" located
		in the image-rotation folder should be displayed.
	
	

/* ------------------------- CONFIGURATION -----------------------


	Set $folder to the full path to the location of your images.
	For example: $folder = '/user/me/example.com/images/';
	If the rotate.php file will be in the same folder as your
	images then you should leave it set to $folder = '.';

*/


	$folder = '.';


/*	

	
*/

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

// You don't need to edit anything after this point.


// --------------------- END CONFIGURATION -----------------------

$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 !== ( $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);
	}
}

?>
 
Just had to share - we finally sold our house and are down to one mortgage!!!:cool1: Wanna guess how much time elapsed between signing on the dotted line and me planning our next Disney trip??? About a nanosecond.:thumbsup2

Laurie
 
just had to share - we finally sold our house and are down to one mortgage!!!:cool1: Wanna guess how much time elapsed between signing on the dotted line and me planning our next disney trip??? About a nanosecond.:thumbsup2

laurie

awesome news!!!!!!!!!!!!
 
Just had to share - we finally sold our house and are down to one mortgage!!!:cool1: Wanna guess how much time elapsed between signing on the dotted line and me planning our next Disney trip??? About a nanosecond.:thumbsup2

Laurie

Twist Brian's arm, December!!! :woohoo:
 

GET A DISNEY VACATION QUOTE

Dreams Unlimited Travel is committed to providing you with the very best vacation planning experience possible. Our Vacation Planners are experts and will share their honest advice to help you have a magical vacation.

Let us help you with your next Disney Vacation!












facebook twitter
Top