Hi,
I want program execution to go to one of several other files
based on a decision.
For Example.
if (1==a)
go to this .php file
if (1==b)
go to that .php file
if (1==c)
go to the other .php file
Thank you for your time.
Michael
--
PHP General Mailing List (http://www.php.net/)
To
if executed and the file does not exist.
You can, of course use;
if(file_exists("this.php")) include("this.php");
to suppress any warning at all.
Warren Vail
-Original Message-
From: michael young [mailto:[EMAIL PROTECTED]
Sent: Thursday, May 20, 2004 2:12 PM
To: [EMAIL
Hi,
a file called a.php prints "hello" to the browser then calls b.php
which prints "goodbye" to the browser.
the output looks like this:
hello
goodbye
how do I clear the screen so the end results looks like this:
goodbye
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit
3 matches
Mail list logo