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
https://forums.phpfreaks.com/topic/140599-user-gallery/
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
https://forums.phpfreaks.com/topic/140599-user-gallery/#findComment-735775
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.