jeff88 Posted September 8, 2009 Share Posted September 8, 2009 I already have the php image upload. I'm wanting to make it where I have to approve images before they are added to my gallery, but I do not know where to start. I guess I'm just asking for direction?? Quote Link to comment https://forums.phpfreaks.com/topic/173494-php-image-upload-help/ Share on other sites More sharing options...
sKunKbad Posted September 8, 2009 Share Posted September 8, 2009 When an upload occurs, you normally change the filename for security reasons, right? So use this file name in a database table, along with the time it was uploaded, and any other details you choose to store. In your admin control panel, have a place where you can review the uploaded files, approve or deny as neccessary. If the file is approved, move it to the approved location. Quote Link to comment https://forums.phpfreaks.com/topic/173494-php-image-upload-help/#findComment-914513 Share on other sites More sharing options...
TeNDoLLA Posted September 8, 2009 Share Posted September 8, 2009 Or other way (which way I would do it) is to add one column to the database called approved which has either value 1 (approved) or 0 (not approved). When user uploads an image set this by default to 0. Then in the admin panel you can change this value for the images. List images that are approved or images that are not yet approved easily. Quote Link to comment https://forums.phpfreaks.com/topic/173494-php-image-upload-help/#findComment-914623 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.