jenodorf
Technical User
- Jan 11, 2005
- 36
Hi
I have the code:
<?php
if($_SESSION["cartSubtotal"] < 25) {
echo("You must order £25 or more. Go back to correct.");
exit();
}?>
This works but I want to not echo "you must etc but call another web page so if the order is less than £25 the the user is sent back to a shop page advising them of the order limit.
Can this be done?
thanks
Ian
I have the code:
<?php
if($_SESSION["cartSubtotal"] < 25) {
echo("You must order £25 or more. Go back to correct.");
exit();
}?>
This works but I want to not echo "you must etc but call another web page so if the order is less than £25 the the user is sent back to a shop page advising them of the order limit.
Can this be done?
thanks
Ian