How do you call an HTML page from a php script?
What do you mean by "call"???
well ... I have an if statement in php and whithin the if statement, if the condition isn't met, I want to redirect to an HTML page with instructions!!
ahh....
use:
if ($error_condition) { header("Location: errpage.html"); }
-- Rich
Thank you