PHP Classes

File: SQL File

Recommend this page to a friend!
  Classes of Barton Phillips   MySQL Slideshow   ???   Download  
File: examples/???
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: MySQL Slideshow
Present slideshow from images listed in a database
Author: By
Last change: Update of examples/mktable.sql
Date: 12 days ago
Size: 380 bytes
 

Contents

Class file image Download
-- -- Main slide show table -- drop table if exists mysqlslideshow; CREATE TABLE `mysqlslideshow` ( `id` int(11) NOT NULL auto_increment, `imageinfo` varchar(255) NOT NULL, /* return from getimagesize(img, extrinfo) serialized */ `subject` text default NULL, `description` text, `data` text, `created` datetime, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;