This looks like a simple picture upload. This is very easy to create.
[ol]
[li]Create an HTML form, with the action="" linking to a processing page (like upload_x.cfm)[/li]
[li]In upload_x.cfm, first check to see if the file field is not blank. If blank redirect user to upload form with a friendly error message). If not blank, then do a series of checks (like is the filefiled value an image and not something else -like .doc or .exe or .zip); agian, if it is then redirect user to an error page, if not move onto the next check. Common checks are:[ul square]
[li]If filefield is an image[/li]
[li]Check file size (you can either resize the image OR rediect user back to upload page with message indicating what file sizes are permitted)[/li]
[/ul]
[/li]
[li]If all checks passed, then upload image onto server. This is done via the <cfftp> tag[/li]
[li]After uploading insert into image path and image name in the dB[/li]
[li]If you want to display the image on the screen, then query the dB and display the image on the screen[/li]
[/ol]
Of course you can play around with this and come up with many clever ways, but in essence this is an easy task to accomplish in CF.
Good luck.
____________________________________
Just Imagine.