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

Creating a minimum amount for order
If you want to create a minimum amount for an order (for example, not allow orders below $25), try this: Right before this section on CWIncShowCart.php:
<form action="<?php echo($cartweaver->thisPage);?>" method="post" name="PlaceOrder">
add some code to check the order subtotal:
<?php
if($_SESSION["cartSubtotal"] < 25) {
echo("You must order $25 or more. Go back to correct.");
echo($cartweaver->cartLinks());
exit();
}?>