PDA

View Full Version : SSI in php?


Tim Mousel
Thu 4th May '00, 8:32am
Hi,

Is it possible to use ssi with php? If so, how? I'm new to php so forgive me if that's a stupid question :)

Thanks,

Tim

John
Thu 4th May '00, 8:38am
Have a look at the 'Program Execution Functions': passthru, system and exec. Also, the Apache specific function virtual may be useful.

John

Tim Mousel
Thu 4th May '00, 8:42am
Thank you. I'll check into that.

AWESOME forum. I've been a ubb user since the beginning, but I'm almost sold on your software.

Thanks,

Tim

Menno
Thu 4th May '00, 4:13pm
I use
<?php
virtual("file.pl")
?>

and

<?php
include("file.txt")
?>

Works great for me :)