PHP Classes

File: cms/cms.sql

Recommend this page to a friend!
  Classes of Vivek moyal   PHP Content Management System   cms/cms.sql   Download  
File: cms/cms.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Content Management System
Manage content pages stored on a MySQL database
Author: By
Last change:
Date: 6 years ago
Size: 5,805 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 4.0.9 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Jun 29, 2017 at 09:38 AM -- Server version: 5.6.14 -- PHP Version: 5.5.6 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 utf8 */; -- -- Database: `cms` -- -- -------------------------------------------------------- -- -- Table structure for table `members` -- CREATE TABLE IF NOT EXISTS `members` ( `memberID` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(255) NOT NULL DEFAULT '', `password` varchar(60) NOT NULL DEFAULT '', PRIMARY KEY (`memberID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; -- -- Dumping data for table `members` -- INSERT INTO `members` (`memberID`, `username`, `password`) VALUES (1, 'admin', '$1$8I4.v32.$bV9MWNrNAFA1bdD/JS/FW1'); -- -------------------------------------------------------- -- -- Table structure for table `pages` -- CREATE TABLE IF NOT EXISTS `pages` ( `pageID` int(11) NOT NULL AUTO_INCREMENT, `pageTitle` varchar(255) DEFAULT NULL, `isRoot` int(11) NOT NULL DEFAULT '1', `pageCont` text, PRIMARY KEY (`pageID`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `pages` -- INSERT INTO `pages` (`pageID`, `pageTitle`, `isRoot`, `pageCont`) VALUES (1, 'Home', 0, '<p>Sample Sample content</p>'), (2, 'About', 1, '<p>Sample Sample content</p>'), (3, 'Services', 1, '<p>Sample Sample content</p>'), (4, 'News', 1, '<p>Sample Sample content</p>'), (5, 'Contact', 1, '<p>Sample Sample content</p>'); -- -------------------------------------------------------- -- -- Table structure for table `webpages` -- CREATE TABLE IF NOT EXISTS `webpages` ( `id` int(9) NOT NULL AUTO_INCREMENT, `Title` varchar(255) NOT NULL, `URL` varchar(255) NOT NULL, `Keywords` varchar(150) NOT NULL, `Description` varchar(250) DEFAULT NULL, `PageDetails` varchar(5000) DEFAULT NULL, `PageName` varchar(90) DEFAULT NULL, `PageType` int(3) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=17 ; -- -- Dumping data for table `webpages` -- INSERT INTO `webpages` (`id`, `Title`, `URL`, `Keywords`, `Description`, `PageDetails`, `PageName`, `PageType`) VALUES (14, 'What is Lorem Ipsum', 'what-is-lorem-ipsum', 'lorem,ipsum,test,demo', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#39;s standard dummy text ever since the 1500s,', '<p><strong style="margin: 0px; padding: 0px; font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;">Lorem Ipsum</strong><span style="font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;">&nbsp;is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry''s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</span><br></p>', 'Home', NULL), (15, 'Why do we use it?', 'why-do-we-use-it', 'Why,readable,page', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.', '<p><span style="font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using ''Content here, content here'', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for ''lorem ipsum'' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).</span><br></p>', 'About', NULL), (16, 'This is demo Service', 'this-is-demo-service', 'Service,Demo', 'Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.', '<p><span style="font-family: &quot;Open Sans&quot;, Arial, sans-serif; text-align: justify;">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of "de Finibus Bonorum et Malorum" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, "Lorem ipsum dolor sit amet..", comes from a line in section 1.10.32.</span><br></p>', 'Services', NULL); /*!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 */;