fizzzgigg Posted December 22, 2010 Share Posted December 22, 2010 I am creating a system for my students. I teach Photography and I want to do more online integration for my class. As of right now I have a whole system in which the students have their on accounts on my site. Now the challenging part for me. I need students to upload photos to me, and I will critique them. My questions for this forum are: 1. Should I have a line of code that creates a folder per user to upload photos to? 2. Should I have the photos stored in the SQL database? 3. Are there any scripts out there that can be easily adapted for this idea? Adam Quote Link to comment https://forums.phpfreaks.com/topic/222435-photo-upload-direction-and-support-please/ Share on other sites More sharing options...
litebearer Posted December 23, 2010 Share Posted December 23, 2010 Just a thought... keep students in db table, unique ID name photos using ID_timestamp store images in folder and image name in db Quote Link to comment https://forums.phpfreaks.com/topic/222435-photo-upload-direction-and-support-please/#findComment-1150555 Share on other sites More sharing options...
fizzzgigg Posted December 23, 2010 Author Share Posted December 23, 2010 Alright that makes more sense. However, after researching ID_Timestamp I did not find anything. I have an uploading script already, I just need the additional line to add in order to match the file with the unique student id. Can you point me in the right direction? Adam Quote Link to comment https://forums.phpfreaks.com/topic/222435-photo-upload-direction-and-support-please/#findComment-1150581 Share on other sites More sharing options...
ZulfadlyAshBurn Posted December 23, 2010 Share Posted December 23, 2010 I have created something that might help you. but the thing is that it does not affiliate to any student id. you will need some code for that. cms.php <?php echo "<form enctype='multipart/form-data' action='upload.php' method='POST'>Choose a file to upload: <input name='uploadedfile' type='file' /> <input type='submit' value='Upload File' /> </form>"; $buildhtml = ""; $dirpath = "files/"; $dlist = opendir($dirpath); while ($file = readdir($dlist)) { if (!is_dir("$dirpath/$file")) { // assuming that all the files are image files // when admin click the photo, it will delete the photo $buildhtml .= "<img src=files/$file onClick='unlink(files/$file);'></img><br>"; } } closedir($dlist); if (!empty($buildhtml)) { echo "Files in Storage</strong></u><p>" . $buildhtml . "</p>"; echo "Click on it to download"; } else { echo "The directory is <strong>empty</strong>! Upload the files by using the form above."; } upload.php <?php // Created by ZulfadlyAshBurn header('Refresh: 3; URL=index.php'); // you have to create a folder named files and it should have 777 permissions. $target_path = "files/"; $target_path = $target_path . basename( $_FILES['uploadedfile']['name']); if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) { echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded"; } else{ echo "There was an error uploading the file, please try again!"; } ?> show.php <?PHP // Created by ZulfadlyAshBurn $buildhtml = ""; $dirpath = "files/"; $dlist = opendir($dirpath); while ($file = readdir($dlist)) { if (!is_dir("$dirpath/$file")) { // assuming that all the files are image files $buildhtml .= "<img src=files/$file></img><br>"; } } closedir($dlist); if (!empty($buildhtml)) { echo "Files in Storage</strong></u><p>" . $buildhtml . "</p>"; echo "Click on it to download"; } else { echo "The directory is <strong>empty</strong>!"; } ?> you may want to put this (show.php) file in the main page. as you can see, the cms i add in unlink for the admin to be able to delete the photo but at the show pg, the viewers are only able to see but not delete. you can secure you cms.php with some mysql and php. Quote Link to comment https://forums.phpfreaks.com/topic/222435-photo-upload-direction-and-support-please/#findComment-1150656 Share on other sites More sharing options...
litebearer Posted December 23, 2010 Share Posted December 23, 2010 By 'ID_timstamp' I meant to create the name from those two numbers ie (psuedo code) $id = 2193; /* in reality you would get it from the student db table */ $ts = time(); /* this gets the current timestamp */ /* from your uploading processing form you get the file type - jpg, gif, png */ $ext = ".png"; $new_name = $id . "_" . $ts . $ext; Quote Link to comment https://forums.phpfreaks.com/topic/222435-photo-upload-direction-and-support-please/#findComment-1150692 Share on other sites More sharing options...
fizzzgigg Posted December 24, 2010 Author Share Posted December 24, 2010 I am looking through this code, and I am trying to make it work. <?PHP include('../functions.php'); if($loggedinid="") { Currently right now it shows the loggedinid as "-1" and should be saying the user's name not "-1." How do I troubleshoot this? Adam Quote Link to comment https://forums.phpfreaks.com/topic/222435-photo-upload-direction-and-support-please/#findComment-1150991 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.