Wednesday, June 27, 2012

Create PHP Image Gallery with MySQL Blob Field

Create PHP Image Gallery with MySQL Blob Field

This is a simple example of photo-gallery script, which uses MySQL table (BLOB field) to store images. Trivial password-protection, uploading and deleting images are supported. There are three main parts of the script: main page generation -- generates HTML code for the list of uploaded photos, forms for photo...

Friday, June 22, 2012

How to Unzip Zip file in PHP

How to Unzip Zip file in PHP

If you dont have access or cpanel access to your server and need to unzip an archive of zip file on your php server. You can use the script below to unzip files on your server using php: $_ZIP_FILE = zip_open('file.zip'); while ($zip_entry = zip_read($_ZIP_FILE)) { $name =...

 

© 2014 4everTutorials. All rights resevered.

Back To Top