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

Adding Common Shipping to Every Country
If you want to create a standard shipping method for every country listed in Cartweaver, find the shipping method id that you want to use (from tbl_shipmethod) and hard-code it into the following query. Run it from your database admin tool. The following example assumes an id of "12":
INSERT INTO tbl_shipmethcntry_rel
(shpmet_cntry_Meth_ID,shpmet_cntry_Country_ID)
SELECT 12 as shpmet_cntry_Meth_ID, country_ID as shpmet_cntry_Country_ID
FROM `tbl_list_countries`