Re: [PHP] Parsing php in html with IIS

2004-12-16 Thread Richard Lynch
Eric Lindsey wrote: > How do I configure my IIS server to parse a specific .html > file for php code? I know how to do this on apache, but windows scares > me :-) So far, all the answers assume he wants to have *ALL* .html files parsed as PHP. He only wants *ONE* *SPECIFIC* .html fil

RE: [PHP] Parsing php in html with IIS

2004-12-15 Thread phpninja
apache will run on windows so you shouldnt fear:) Anyways go into the properties tab of the IIS web server, you need to register .php as a valid file extension, there is a list of all file extensions under that tab (its one of the tabs in there i cant remember). Add in .php . If you've already map

Re: [PHP] Parsing php in html with IIS

2004-12-15 Thread Greg Donald
On Wed, 15 Dec 2004 15:02:08 -0700, Eric Lindsey <[EMAIL PROTECTED]> wrote: > How do I configure my IIS server to parse a specific .html > file for php code? I know how to do this on apache, but windows scares > me :-) http://www.php.net/manual/en/install.windows.iis.php -- Greg Do

Re: [PHP] Parsing PHP

2003-07-27 Thread Jeff Moore
On Saturday, July 26, 2003, at 03:06 AM, Nikhil G. Daddikar wrote: I am using PHP to develop and web app. The app also has a scripting language for the *end user*. I was thinking if I could expose a very simple subset of PHP to them (foreach, if-then-else, variable assignments and comments) an

Re: [PHP] Parsing PHP

2003-07-26 Thread Peter James
There is the tokenizer extension... http://www.php.net/tokenizer This might give you a good start. -- Peter James [EMAIL PROTECTED] php|architect The Magazine for PHP Professionals http://www.phparch.com - Original Message - From: "Nikhil G. Daddikar" <[EMAIL PROTECTED]> To: <[EMAIL P

Re: [PHP] parsing PHP to create HTML only page

2002-09-27 Thread Marek Kilimajer
You can use phpnuke or similar to achieve this, all you need is to decide which database to use (you may use Host: header, or directory). But sure, this won't change your dns records or Apache conf files. Tony Burgess wrote: >Hi All, > >I'm really just looking for some advice! > >I am looking

RE: [PHP] Parsing PHP output

2002-05-26 Thread Ray Hunter
The problem is that you are sending this output to the browser and not the server. You can do this with XML because IE and Netscape have XML parsers built-in. You should create a form that will catch the data from CGI then handle it on the server. There might be other work arounds as well...how