PHP Classes

File: posts.sql

Recommend this page to a friend!
  Classes of Ahmed Khan   PHP Article System for Posts   posts.sql   Download  
File: posts.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Article System for Posts
Create and manage posts stored in a database
Author: By
Last change:
Date: 2 years ago
Size: 1,618 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.5.4.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Aug 09, 2016 at 01:36 PM -- Server version: 10.1.8-MariaDB -- PHP Version: 5.5.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 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: `blog3` -- -- -------------------------------------------------------- -- -- Table structure for table `post` -- CREATE TABLE `post` ( `article_id` int(11) NOT NULL, `article_name` varchar(255) NOT NULL, `article_content` text NOT NULL, `img` varchar(50) NOT NULL, `date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `post` -- INSERT INTO `post` (`article_id`, `article_name`, `article_content`, `img`, `date`) VALUES (1, 'My First Posts', 'This is really coolss', '88.png', '2016-08-09 11:12:42'); -- -- Indexes for dumped tables -- -- -- Indexes for table `post` -- ALTER TABLE `post` ADD PRIMARY KEY (`article_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `post` -- ALTER TABLE `post` MODIFY `article_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; /*!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 */;