How do i increase the value of a variable say by 10
sort of like this
$quote == 0;
if($pro==1){ $quote + 10; }
So basicaly if $pro = 1 i want to increase $quote by 10.
Stuart
hmm... one of the most basic ideas around, actually.
$quote = 0; if ($pro == 1) { $quote += 10; }