PHP Include Virtual?

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
Goat
Forum Newbie
Posts: 11
Joined: Mon Apr 29, 2002 11:12 pm
Contact:

PHP Include Virtual?

Post by Goat »

Is there a PHP version of the SSL include virtual command?
Jim
Forum Contributor
Posts: 238
Joined: Fri Apr 19, 2002 5:26 am
Location: Near Austin, Texas

Post by Jim »

Do you mean SSI?

There's:

<?
include("/path/to/file.php");
?>

and I believe there's another, I'm just not sure what it is.
Goat
Forum Newbie
Posts: 11
Joined: Mon Apr 29, 2002 11:12 pm
Contact:

Post by Goat »

i mean ssi my mistake...a typo...
dusty
Forum Contributor
Posts: 122
Joined: Sun Apr 28, 2002 9:52 pm
Location: Portsmouth, VA

Post by dusty »

require() is the other. it is just about identical to include() other than the way it outputs errors
Post Reply