PHP Classes

File: categories.sql

Recommend this page to a friend!
  Classes of Mohammad Keramatifar   Database Combo Box   categories.sql   Download  
File: categories.sql
Role: Auxiliary data
Content type: text/plain
Description: Database Table Sample
Class: Database Combo Box
Generate form select inputs from database queries
Author: By
Last change:
Date: 10 years ago
Size: 1,190 bytes
 

Contents

Class file image Download
-- phpMyAdmin SQL Dump -- version 3.4.5 -- http://www.phpmyadmin.net -- -- Host: localhost -- Generation Time: Jul 05, 2013 at 09:41 PM -- Server version: 5.5.16 -- PHP Version: 5.3.8 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: `test` -- -- -------------------------------------------------------- -- -- Table structure for table `catgeories` -- CREATE TABLE IF NOT EXISTS `catgeories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=6 ; -- -- Dumping data for table `catgeories` -- INSERT INTO `catgeories` (`id`, `title`) VALUES (1, 'Software'), (2, 'Hardware'), (3, 'Network'), (4, 'Programming'), (5, 'Web Design'); /*!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 */;