Featured DW Extensions
Navigate a results page with custom links for ASP/PHP/ColdFusion/JSP
Automate a dynamic grid vertically or horizontally for PHP
Add sort links to a dynamic table for ASP/PHP/ColdFusion/JSP
Navigate a details page with next/previous links for ASP/PHP
Other projects
Old-style Chicago blues in the DC metro area
For ColdFusion application development
Featured Book
PHP Object-Oriented Solutions by David Powers

Featured Book
Adobe Dreamweaver CS5 with PHP: Training from the Source by David Powers

Technical editing by Tom Muck
Member

Getting Rid of Sample Data
To delete any order manually -- not through the admin -- grab the order number and load these queries into a database tool:
DELETE FROM tbl_orderskus where orderSKU_OrderID = 'yourOrderId';
DELETE FROM tbl_orders where order_ID = 'yourOrderID';
This shouldn't be necessary, but if your data was corrupted by manually removing shipping, customer, or any other data, it might become necessary.