PHP Classes

File: examples/menu.sql

Recommend this page to a friend!
  Classes of Jelle Sebreghts   Database class extending PDO   examples/menu.sql   Download  
File: examples/menu.sql
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Database class extending PDO
Execute queries composed programatically using PDO
Author: By
Last change: Update of examples/menu.sql
Date: 2 months ago
Size: 934 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 3.3.9.2 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: May 10, 2011 at 07:16 PM -- Server version: 5.5.9 -- PHP Version: 5.3.5 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!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: `db_example` -- -- -------------------------------------------------------- -- -- Table structure for table `menu` -- CREATE TABLE `menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) NOT NULL, `page` varchar(255) NOT NULL, `weight` int(11) NOT NULL DEFAULT '100', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ; -- -- Dumping data for table `menu` -- INSERT INTO `menu` VALUES(1, 'Home', 'home', 100);