Jump to content

User Gallery


whiteboikyle

Recommended Posts

Okay well i am creating a site which will have a user gallery. AKA Each member will be able to upload their photos. (Kinda like myspace).

 

Now, a few questions.

When they upload their image. Should i encrypt the name? and/or Randomize the name?

 

When they upload, how can i check to see if that number already exist or not?

 

But when i do this, its going to be like the following

 

image.php?userID=theiruserid&picID=picID or w/e

 

so that it will only find the pic for each userid that was assigned to it.

Link to comment
Share on other sites

You can always do something like...

<?php

$img_name = md5(time()).$extension;

?>

 

Not very likely you'll have duplicates unless, the time/date on the server is changed.

 

Edit: I assume you're going to store/log the fact they uploaded an image in your db. So yeah, you store the image name and in the same table, the user id associated with it.

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.