Gamerz Posted July 30, 2009 Share Posted July 30, 2009 Hello, I have an image uploader. I would like to display all IMAGES (No files) recently uploaded, and add them to the home page. Any tips to get started? Maybe a code, or even a snippet? To get started, 1. I know I need a code to detect whether or not the file is an image or file. If file, the code will skip through, and not display the file. If image, the code will get the image url, and add them to the home page displaying the image. 2. I know I need a code to space out each images, so it wont just bunch up. 3. I need a code to resize the image to small on screen, so my home page wouldnt be messed up. ---- I just don't know how to code it...help please? Quote Link to comment https://forums.phpfreaks.com/topic/168099-php-display-recently-uploaded-images/ Share on other sites More sharing options...
Third_Degree Posted July 30, 2009 Share Posted July 30, 2009 Well, for #1, use the function filetype() for #2, #3, HTML, not PHP, will solve your problems. Quote Link to comment https://forums.phpfreaks.com/topic/168099-php-display-recently-uploaded-images/#findComment-886601 Share on other sites More sharing options...
Gamerz Posted July 30, 2009 Author Share Posted July 30, 2009 Well, do you have the code for it? Quote Link to comment https://forums.phpfreaks.com/topic/168099-php-display-recently-uploaded-images/#findComment-887076 Share on other sites More sharing options...
GingerRobot Posted July 30, 2009 Share Posted July 30, 2009 for #2, #3, HTML, not PHP, will solve your problems. Perhaps...though i wouldn't recommend using the image tag's attributes to 'resize' an image...you're loading a file that is larger than necessary. That's bad for you and for the visitor; neither of you want more bandwidth than necessary. Better to resize it permanantly. Well, do you have the code for it? People aren't here to write your website for you. If you're after that, you should use the freelance section and be prepared to get out your wallet. Third_degree has put you on the right track with number 1, though filetype wont quite do what you need. It'll tell you if something is a file, directory, or something else but not if it's an image. It's probably sufficient to check the extension of the filename for image extensions since you'd hope you're checking any uploaded files to ensure they are images. You'll also need the glob function to cycle through the files in the directory. Quote Link to comment https://forums.phpfreaks.com/topic/168099-php-display-recently-uploaded-images/#findComment-887130 Share on other sites More sharing options...
Third_Degree Posted July 31, 2009 Share Posted July 31, 2009 Ben speaks the truth. If your images are massive, yeah, it'd be better to resize them to thumbnail size either manually or automatically, search "php image resize" on google. As for filetype(), my bad, he's right it's rather useless in this context, I was speaking from memory, and I guess it failed me :-\. http://www.php.net/glob will probably do you well. If you're lucky, someone will throw some code at you in this thread, but in the future, don't rely on it. The best help is help that you need to take and apply to your goal. Quote Link to comment https://forums.phpfreaks.com/topic/168099-php-display-recently-uploaded-images/#findComment-887410 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.