I don't know how to explain it, so I'm gonna give an example:
if(condition) { "goto page1.php" } else { "goto page2.php" }
Is it actually possible to use a function or a command that links you to an other page ???
Jeremias
[man]header[/man]
if(condition) { header("Location: page1.php"); } else { header("Location: page2.php"); }
Thx for the quick reply 🙂