PHP Code
<?php
require_once('Scaffold.php');
mysql_connect('db_host', 'db_user', 'db_pass') or die(mysql_error());
mysql_select_db('db_name') or die(mysql_error());
$scaffold = new Scaffold('items');
$scaffold->parent_table = 'categories';
$scaffold->wysiwyg = true;
$scaffold->rows_per_page = 5;
$scaffold->image_upload = true;
$scaffold->image_path = dirname(__FILE__).'/photos/';
$scaffold->image_url = 'http://www.aaronharp.com/scaffold/photos/';
$scaffold->image_width = 500;
$scaffold->image_height = 500;
$scaffold->thumb = true;
$scaffold->thumb_width = 70;
$scaffold->thumb_height = 70;
$output = $scaffold->build();
?>
Table "items":
+-------------+--------------------------------------------------------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+--------------------------------------------------------------------+------+-----+---------+----------------+
| id | int(11) | NO | PRI | NULL | auto_increment |
| category_id | int(11) | NO | | NULL | |
| name | varchar(100) | NO | | NULL | |
| description | text | NO | | NULL | |
| price | float(8,2) | NO | | NULL | |
| image1 | varchar(255) | NO | | NULL | |
| image2 | varchar(255) | NO | | NULL | |
| image3 | varchar(255) | NO | | NULL | |
| image4 | varchar(255) | NO | | NULL | |
| color | enum('N/A','white','black','blue','red','green','orange','purple') | NO | | N/A | |
+-------------+--------------------------------------------------------------------+------+-----+---------+----------------+
Items | Category |
Name |
Description |
Price |
Image1 |
Image2 |
Image3 |
Image4 |
Color |
Actions |
|
| Toys | Care Bears: 25th Anniversary Tenderheart Bear |
To celebrate the Care Bears' silver anniversary, the new limited edition 25th Anniversary Care Bear is now available. Each beautiful white and silver plush bear is accompanied by a rare DVD containing... |
12.98 |
View |
View |
|
|
white |
Show
Edit
Delete
|
| Toys | LEGO Star Wars: Imperial Dropship (7667) |
Send in the Imperial Dropship with its stormtrooper squad to build your Imperial forces! Equipped with laser cannons and a detachable troop platform, this speedy space transport is ready to battle the... |
10.99 |
View |
View |
View |
View |
N/A |
Show
Edit
Delete
|
| Toys | Micro Mini Stunt Scooter - Huffy |
The Micro Mini Stunt Scooter from Huffy is the perfect choice for toddlers who are envious of "big kid" scooters, but aren't quite big enough to ride them. The Micro Mini offers a sturdy steel frame w... |
20.98 |
View |
|
|
|
blue |
Show
Edit
Delete
|
| Toys | Monopoly for Nintendo Wii |
Celebrating over 70 years of family fun, the legendary property trading game MONOPOLY is hitting video game consoles in a whole new way! The world's most popular board game returns in 2008 with MONOPO... |
39.99 |
View |
|
|
|
N/A |
Show
Edit
Delete
|