PHP Classes

File: mysql_table.txt

Recommend this page to a friend!
  Classes of Rodrigo Faustino   PHP Game Geolocation   mysql_table.txt   Download  
File: mysql_table.txt
Role: Auxiliary data
Content type: text/plain
Description: MySQL database table creation SQL
Class: PHP Game Geolocation
Game to add locations of crimes to a map
Author: By
Last change:
Date: 5 months ago
Size: 314 bytes
 

Contents

Class file image Download
CREATE TABLE IF NOT EXISTS `markers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `address` varchar(80) NOT NULL, `lat` float(10,6) NOT NULL, `lng` float(10,6) NOT NULL, `type` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;