<?php
if(($LEDCart->TotalColumn("TotalPrice") < "75") && ($LEDCart->TotalColumn("TotalWeight") < "1000")) {
echo("(£3.00)");
}
elseif(($LEDCart->TotalColumn("TotalPrice") < "75") && ($LEDCart->TotalColumn("TotalWeight") >= "1000")) {
echo("(£5.00)");
}
?>
...and so on, and these would have to obviously correspond with the values in the shipping rules?
My weight column is in grammes.
NJ