[ic] quickie

Bob Curtis bob@circlesquared.com
Wed, 20 Dec 2000 09:57:52 +0000


I want to add a fixed amout to the shipping variable without using a % of something
else....I assumed you just use a bit of perl and use [shipping] as the variable?
i.e

Is this a Cambridge Address?
<input type=radio name=camb1 value=yes>yes
<input type=radio name=camb1 value=no>no
[perl]
$camb1=param('camb1');
 if ($camb1 eq no){
[value shipping] eq 5
}
[/perl]

so if the delivary address IS Cambridge there is no shipping charge, but everywhere
else gets charged £5

This is not working....has anyone got any clues?