Hi,
Is there a way to call the php interpreter on a file, and get the resulting HTML stream? For example, say I have a file which has some html and also some php code...like <body><? echo "hello world"; ?></body> ...Now, I want to get the php-translated version of this file : <body>hello world</body> and save it to a variable which I can use later on. Is this possible? Thanks.
Sriram