I am having a problem with a variable of a submit button.
<input type="submit" name="add" value="Add to Shopping Basket"/>
I check to see if the button has been pressed by:
if($add)
Which works howver, $add stays true, so even when I don't press it the code within this statement gets executed.
How can I reset the button variable to flase after it has executed the code??
Thanks for yoour help, this is really wining me up!!!