PHP Classes

File: robots.sql

Recommend this page to a friend!
  Classes of Pierre FAUQUE   Robots Class   robots.sql   Download  
File: robots.sql
Role: Auxiliary data
Content type: text/plain
Description: Creation of MySQL table
Class: Robots Class
Log accesses of robots to database, email or files
Author: By
Last change:
Date: 2 years ago
Size: 543 bytes
 

Contents

Class file image Download
-- -- Table structure for table `Robots` -- CREATE TABLE Robots ( `ws` varchar(30) not null comment 'Visited website name', `dat` datetime not null comment 'Date and hour of the visit', `ip` varchar(15) not null comment 'IP of the visitor', `ua` varchar(255) not null comment 'User-agent of the visitor', PRIMARY KEY(`dat`) ) engine=MyISAM comment='Robot visits table'; -- -- You can choose another name for the table but in this case you -- will have to change its name into the Robots Class (index.php) --