and trying to do a IF statement, what it does is it check if the $totalcost has a value, if it does it goes to the next page and if it doesn;t then it will display message saying it is empty,
i have got this so far,
<?php
$number = (1);
if ($totalCost<$number)
{
echo "you have nothing in your cart";
}
if ($totalCost>$number)
{
include "output.php";
}
?>
thanks in advance to anyone who can help out