PHP Classes

File: SQL File

Recommend this page to a friend!
  Classes of johno dread   Yahoo MSN chat   ???   Download  
File: sql/???
Role: Auxiliary data
Content type: text/plain
Description: Create database
Class: Yahoo MSN chat
Determine if Yahoo or MSN users are online
Author: By
Last change:
Date: 15 years ago
Size: 668 bytes
 

Contents

Class file image Download
CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `first_name` varchar(20) NOT NULL, `last_name` varchar(20) NOT NULL, `email` varchar(128) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ; -- -- data for table `users` -- INSERT INTO `users` (`id`, `first_name`, `last_name`, `email`) VALUES (3, 'jono', 'dread', '[email protected]'), (4, 'goan', 'therun', '[email protected]'), (5, 'gaon', 'therun', '[email protected]'), (6, 'ann', 'splashyy', '[email protected]'), (7, 'Nally', 'Artz', '[email protected]'), (8, 'johno', 'dread', '[email protected]');