I want my users to be able to upload photos, and I know how to code that part. But I'm not sure how to make them easily accessible to my scripts after. Here's the problem as I see it:
I have enough sense not to make any of my public_html directories writeable. Therefore when a file is uploaded, I figure it needs to go in a folder in the root that has php-writable permissions. But then my scripts have to reference it like: "../../photos/file.jpg" and it won't have an absolute address available by browser.
There's gotta be a good way to make publicly available photo uploads, right?