PHP Classes

File: image.sql

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   PHP Image Compressor on Upload   image.sql   Download  
File: image.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Image Compressor on Upload
Compress uploaded image file reducing its quality
Author: By
Last change:
Date: 0 years ago
Size: 1,440 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.9.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jan 23, 2020 at 02:41 AM -- Server version: 10.4.10-MariaDB -- PHP Version: 7.1.33 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `compress` -- -- -------------------------------------------------------- -- -- Table structure for table `image` -- CREATE TABLE `image` ( `id` int(11) NOT NULL, `name` varchar(1000) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `image` -- INSERT INTO `image` (`id`, `name`) VALUES (3, 'adeleye ayodeji dp new.PNG'), (4, 'IMG_20190625_085804.jpg'); -- -- Indexes for dumped tables -- -- -- Indexes for table `image` -- ALTER TABLE `image` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `image` -- ALTER TABLE `image` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; COMMIT; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;