RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Paul Colcutt
you could make a Flash movie that just contains a text field and fills it with the output of your php page by using Flash's loadvariables() function >[snip] >So is there any way to accomplish what I want to using php without >naming the files *.php?? >[/snip] -- === Paul Co

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Brian V Bonini
nal Message- > From: Alexander Ross [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 10:13 AM > To: 'Brian V Bonini'; [EMAIL PROTECTED] > Subject: RE: [PHP] Re: including a php file in an html doc > > > So is there any way to accomplish what I want to us

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread vic
You must have a space between you can also write which might be easier to follow. And you have to include ALL your php code between these tags (you may use as many pairs as you wish in your page). And don't forget to name you file .php not .htm or .html - Vic -Original Message- From:

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Jay Blanchard
[snip] So is there any way to accomplish what I want to using php without naming the files *.php?? [/snip] in your httpd.conf file (Apache); # And for PHP 4.x, use: # AddType application/x-httpd-php .php AddType application/x-httpd-php .html This will cause html files to be treated as PH

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Brian V Bonini
Because your trying to put PHP directives in an html file. Your web server does not know to parse html files as php files unless you tell it to do so. > -Original Message- > From: Alexander Ross [mailto:[EMAIL PROTECTED]] > Sent: Monday, August 12, 2002 9:50 AM > To: [EMAIL PROTECTED] >

RE: [PHP] Re: including a php file in an html doc

2002-08-12 Thread Alexander Ross
So is there any way to accomplish what I want to using php without naming the files *.php?? -Original Message- From: Brian V Bonini [mailto:[EMAIL PROTECTED]] Sent: Monday, August 12, 2002 10:11 AM To: Alexander Ross; [EMAIL PROTECTED] Subject: RE: [PHP] Re: including a php file in an