8000 GitHub - mzm-dev/mzm-pdo: Example MySQL for PDO PHP
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

mzm-dev/mzm-pdo

Repository files navigation

MZM PDO

Example MySQL for PDO PHP

framework is always more feasible than coding in the pure language.

-- Dumping database structure for db_mysqli
CREATE DATABASE IF NOT EXISTS `db_mysqli`
USE `db_mysqli`;

-- Dumping structure for table db_mysqli.users
DROP TABLE IF EXISTS `users`;
CREATE TABLE IF NOT EXISTS `users` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `username` varchar(250) DEFAULT NULL,
  `email` varchar(250) DEFAULT NULL,
  `password` varchar(250) DEFAULT NULL,
  `status` int(2) DEFAULT '1',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;

About

Example MySQL for PDO PHP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0