Hope someone can help with this.
I have a few pages as part of a shopping cart, where some optional extras can be offered.
They are in the following order:
Paintwork (can apply to any product)
Cushions (can only apply to chairs)
Glasstop (can only apply to tables)
The logic I would like around the submit button on the Paintwork page is:
If Cushions is not empty go to cushions.php
else if Glasstop is not empty go to glasstop.php
else go to
shoppingcart.php
Where Cushions and Glasstop are the fields in the database table.
Hope that makes sense. Thanks.