Jump to content

[SOLVED] Load and output image without uploading (bandwidth spending)?


Full-Demon

Recommended Posts

Hi,

 

I have a script where I have to load a certain image and than output the image, but I don't want it that the server has to upload the image and than let the user download: I want the user to just download from the original fileserver (where the image is stored).

 

So I have:

File server (images stored here) -> Script server (with the actual script) -> User

 

Users use the image tag to load the image: <img src="site.com/myscript.php">

I thought about this for my script:

<?php
$array = array('img1.png', 'img2.png');
header("Location: othersite.com/".$array[rand(0, 1)]);
?>

 

That works, except that it is not random! The output is always one image and if you reload it never switches to the other one!

 

How can I make this like I want?

 

Thank you a lot!

FD

 

 

Link to comment
Share on other sites

erm.. maybe

 

<?php
header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT"); // Date in the past

$array = array('img1.png', 'img2.png');
$rand = array_rand($array);
header("Location: othersite.com/".$array[$rand]."?Rand=".time());
?>

 

depends how your calling that page itself..

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.