How to Use Amazon S3 & PHP to Dynamically Store and Manage Files with Ease
In Misc by Jürgen VisserA couple of weeks ago NETTUTS posted an introductory tutorial to using Amazon's Simple Storage System (S3). Being able to upload an unlimited number of files for hardly any money is great, but it would be even better if your users could upload files from your website. That way you wouldn't have to worry about the size of your web server for a second. Let's try!
Basically what we're going to do is use a standard HTML file element and an easy to use S3 PHP class to make a page where people can upload a file to your S3 account and get information about the files that have already been uploaded. For this you'll need an Amazon S3 account and a PHP enabled webserver. If you haven't heard about Amazon S3, or you don't have an account yet, read Collis' Introductory S3 Tutorial first.
Step 1
Now, the first thing we'll need is a way for PHP to communicate with the S3 server. Donovan Schonknecht has written a PHP class for this, so rather than trying to reinvent the wheel, we'll use that!
- Download the 'latest beta version (0.2.3)'
- Extract the .rar file and copy the S3.php file to a new folder. The file comes with a readme and a few examples, too, but we won't be using those.
- Open the S3.php file and take a look around just to see all the work you will not be doing yourself thanks to this class! :-)

Step 2
Next, make a new file called page.php in the same folder. First thing we'll need to do is include the S3.php file. We'll use the require_once() function in php. This function will include the file only if it wasn't included before on the same page. This is to make sure that we won't run into any problems with function redefinitions when accidentally the script tries to include the file a second time.
Next, we'll have to enter the Amazon Web Services (AWS) access information the script needs to access our S3 server. These are the Acces Key and the Secret Key provided by Amazon (again, if you don't know what I'm talking about see the introductory NETTUTS tutorial). Now we have all the information needed to initiate the class. This code was put in the very top of the body tags.
<?php
//include the S3 class
if (!class_exists('S3'))require_once('S3.php');
//AWS access info
if (!defined('awsAccessKey')) define('awsAccessKey', 'CHANGETHIS');
if (!defined('awsSecretKey')) define('awsSecretKey', 'CHANGETHISTOO');
//instantiate the class
$s3 = new S3(awsAccessKey, awsSecretKey);
//we'll continue our script from here in step 4!
?>
Step 3
Now let's make a simple html form with a file element in it. This element allows users to browse their local drive for a file. When the user presses the submit button the file will automatically be uploaded as a temporary file to the server and information about the file will be sent in the POST variable.
Here's the code snippet. Be sure not to forget enctype="multipart/form-data" which is necessary for the file element to work. This code should be placed outside the <?php ?> tags, since it is HTML.
<form action="" method="post" enctype="multipart/form-data"> <input name="theFile" type="file" /> <input name="Submit" type="submit" value="Upload"> </form>

Step 4
Now, for those unfamilliar with forms, action="" tells the script which page to go to after submitting. Since we specified an empty string there, the form will post the variables and then refresh the current page. So when the page gets loaded, we'll want to check whether or not a form was submitted.When a form was submitted the page should execute the script that retreives the post variables and takes care of moving the files to the S3 server.
The post variable sent by the file element is an array, containing information about the file. For example: filename, size, type and temporary name. All we'll need is the filename and the temporary name. Note that, unlike other form elements, the file element will send the variables to $_FILES and not to $_POST.
The PHP code below checks whether a form was submitted and retreives the post variables. We'll deal with the S3 server later. This code should be placed right after where we initiated the s3 class.
//check whether a form was submitted
if(isset($_POST['Submit'])){
//retreive post variables
$fileName = $_FILES['theFile']['name'];
$fileTempName = $_FILES['theFile']['tmp_name'];
//we'll continue our script from here in the next step!
}
Step 5
Ok, so now we have a form that sends a temporary file to the server and leaves you with some information. If you like, you can upload the file to a server and test it. You'll notice that it indeed takes some time to process the form, since it is in fact uploading a file. Anyway, you won't see the file appear anywhere on your server because it was only stored as a temporary file. All that's left to do is to move our uploaded file to a bucket. First we'll create a new bucket and then we'll move the file to that bucket.
To create a bucket we'll use the function putBucket(bucket, acl) in which 'bucket' is the name of the bucket (Amazon's word for your main folder or directory of files). The second argument is the Access Control List (ACL) in which you can define who can and who cannot read from or write to this bucket. We want anybody to be able to read our files, so we'll use S3::ACL_PUBLIC_READ. Note that a bucket only needs to be created once, so every next time this script is executed this function won't do anything, since the bucket already exists.
To move the file we'll use the function putObjectFile(sourcefile, bucket, newfilename, acl).The sourcefile is the path to the file we want to move, so in our case it is the temporary file that was uploaded through our form. Bucket is the bucket to move the file to, which will be the bucket we just created. Newfilename is the filename the file will get in the bucket. In this tutorial we'll use the same filename as on the local drive, but in some cases you might want to change filenames. Acl again is the Access Control List, which we'll again set to S3::ACL_PUBLIC_READ.
//create a new bucket
$s3->putBucket("jurgens-nettuts-tutorial", S3::ACL_PUBLIC_READ);
//move the file
if ($s3->putObjectFile($fileTempName, "jurgens-nettuts-tutorial", $fileName, S3::ACL_PUBLIC_READ)) {
echo "We successfully uploaded your file.";
}else{
echo "Something went wrong while uploading your file... sorry.";
}
Step 6
Now when you select a file and hit 'Upload' the file will be stored on the amazon server. You can already view it just by entering a URL that looks like this: http://yourbucketname.s3.amazoneaws.com/yourfile.ext
For the finishing touch we'll want the script to output a list of files in the bucket. For this we'll use the function getBucket(bucket), in which bucket is the bucket we want to output. This function returns an array with information about the files. Each returned as an array, too. To visualize:

We want to output every file in the $bucket_contents array. For this we'll use a foreach() loop which will loop through the array until all elements have been processed. It will store the current element in the $file variable and execute the code in between the brackets. All we need to do now is echo a link to the file.
Place this code under the form to show the list there.
<?php
// Get the contents of our bucket
$bucket_contents = $s3->getBucket("jurgens-nettuts-tutorial");
foreach ($bucket_contents as $file){
$fname = $file['name'];
$furl = "http://jurgens-nettuts-tutorial.s3.amazonaws.com/".$fname;
//output a link to the file
echo "<a href=\"$furl\">$fname</a><br />";
}
?>
With a little css styling, your final result might look like this:

Finished!
So there you have it, your own unlimited file upload script. Of course there's a lot more you can do with the S3 PHP class. Just take a quick glance at its readme file and you'll be good to go. It's really easy to use!
Comments
Leave a CommentAdd a Comment














Mark Bowen
June 5th, 2008
Hi there,
Nice tutorial. Would be nice if you could possibly add in some nice AJAX love to this to show feedback on how much of the file has been uploaded with a tutorial as to how to do that. Having unlimited space to upload files is great but even better if the end user gets feedback as to how long they may have to wait for their file to upload before they can upload another one or they may just think that the form has given in
Just a thought though. Great tutorial.
Best wishes,
Mark
Andrei Constantin
June 5th, 2008
Sweet one, I was looking for something like this. Amazon S3 really kicks arse. Thanks a bunch, will give it a try
Ben Griffiths
June 5th, 2008
Nice little tut, thanks
John Deszell
June 5th, 2008
Great Tut! I’ve been looking for something like this. I’ll have to start utilizing soon. Thanks again Netttus!
James
June 5th, 2008
Nicely written tut! Amazon S3 is definitely something I’ll be using in future projects!
Andrew Pryde
June 5th, 2008
Nice, looks like a very good idea. I will look into using amazon I think! I may release a slightly improved version of the script with some more functionality shortly as well so keep an eye out for it
Andrew
Nate
June 5th, 2008
Very useful information, thanks.
sir jorge
June 5th, 2008
Crazy stuff, i like it.
Azeem
June 5th, 2008
Awesome tutorial. Quick question: In your example, if you click on one of the images, for example, it asks you to download the file instead of just displaying it on screen. Is there a way to fix that?
Jurgenv
June 5th, 2008
Thanks guys.
@Andrew: ofcourse there’s a lot more you can add to this script. I am using amazon S3 in several projects i’m working on, also making more use of the possibilities. When you get into using the s3 class you’ll notice there’s a lot more you can do with it
crysfel
June 5th, 2008
Nice tut!! and it is very easy to do it, thx.
Tor Løvskogen
June 5th, 2008
Nice tutorial, just wanted to chime in to say that the uploader doesn’t handle files with spaces in them very well.
Noura Yehia
June 5th, 2008
I Still havent gotten around to try Amazon S3 yet, but each time I read something about it, it makes me more determined to try it.
Thanks for the article, great as always
Joefrey Mahusay
June 5th, 2008
Nice article! I will try this one.
Danny
June 5th, 2008
Awesome, definitely useful
Erik Reagan
June 5th, 2008
I will possibly be hosting podcast content on S3 soon and this will help a lot since I will have a few administrators. Thanks for the walk-through!
Ian R-P
June 5th, 2008
I LOVE these tuts… but i’m running into errors now (both this downloadable version and the s3.php verion from the creators website).
Parse error: syntax error, unexpected ‘)’, expecting ‘(’ in /homepages/31/d204952132/htdocs/iarp/scripts/s3/page.php on line 29
Line 29 of page.php: $s3->putBucket(”iarp”, S3::ACL_PUBLIC_READ);
It’s got me stumped. If anyones on msn and knows what my problem is iarp@cogeco.ca plz add me.
PixlNinja
June 5th, 2008
A little stuff to limit the size of a file will be grate.. else you know what will happen on a public folder
Shane
June 6th, 2008
A nice progression from the previous tutorial on Amazon S3.
@Mark - there are a number of file progress upload scripts out there. This one uses PHP, but there are several others that use MooTools.
You may find this jQuery multiple file upload plugin useful too.
It would be nice if Line 2 in step 5 used instead of too, but hey - I’m not complaining.
A great tutorial - thanks for posting.
Johny
June 6th, 2008
Well an interesting technique but in case of content control ?
Why should i give Amazon the control about which pictures can be uploaded on my site ? Shouldn´t i decide it myself ? Who will be responsible for the stored files on the Amazon server ? Amazon? Me ? The User?
From Development it´s not a very complicated technique but from strategic and law points there are a lot questions about using it.
Jurgenv
June 6th, 2008
Well, amazon doesn’t have ‘control’ about which pictures can be uploaded, i guess. You can upload anything but copyrighted material. You will be responsible for what your users upload, but you would be responsible for that too if you’d be using your own server.
Bryan
June 6th, 2008
@Ian R-P: PHP5 is required.
Jacob Gube
June 7th, 2008
Great tutorial - I’ve been doing this on my site to have an off-site back up of everything. S3 is amazing, highly recommended. Easy to use, clean, always up and it’s a very economical solution to serving static media as well as back-ups.
Hey Collis - you having any trouble with S3 lately, with the Amazon outages? I’ve been monitoring my site’s performance (read as: “took 5 minutes to click around, not using any special performance tools”), everything looks fine so far.
James Baldwin
June 7th, 2008
Not sure if I have been living under a rock or something but hadn’t actually heard of this S3 service - certainly sounds brilliant though and may well be looking into it further!
Erik
June 8th, 2008
I noticed in the demo that AS3 wants me to download files instead of using my browser’s set behaviour (for images, this would be displaying them directly in the browser; for mp3 files, this would be playing them in winamp). Is that behaviour possible to change?
Nico
June 9th, 2008
Very cool. Thank you.
Jurgenv
June 11th, 2008
@Erik, not sure. I noticed that too, in some browsers. Right now what I did is just linking to the file, which I thought should do with it whatever it’s supposed to do.
Taylor Satula
June 22nd, 2008
Now all we need is for it to be free
How I Did?
July 1st, 2008
Great article..Is there a way to select/create sub-folders inside a bucket at the time of uploading the files?
Regds,
Deep
Mangal
July 12th, 2008
Nice article! I will try this one.
trevor
July 16th, 2008
I tried this scrip t and it keeps failing on me. i’m pretty sure my awsAccessKey and awsSecretKey are correct.
anyone have any ideas why this would fail? my php is runnin on a godaddy dedicated sever…
trevor
July 16th, 2008
I figured out the issue - if your server cdate and time is way off, this script fails. I corrected the time and now it works.
That was a needle in a haystack!
figured i’d save someone else a LOT of time if they have the same problem.
your error log will say something like: he difference between the request time and the current time is too large…
Windows Themes
September 5th, 2008
ok. Is a nice idea and soon I will try it. Thanks!