[PHP] Help With Includes

2001-07-24 Thread John Holcomb
Help please! I'm trying to use an include with my HTML file. Inside my HTML file I've tried: 1) script language=php include(/export/home/bayarea.net/htdocs/webclient.php3?id=2); /script AND 2) script language=php include(http://www.bayarea.net/webclient.php3?id=2;); /script

Re: [PHP] Help With Includes

2001-07-24 Thread Chris Fry
John, Haven't used this before but if you set id before the include:- $id=2; script language=php include(/export/home/bayarea.net/htdocs/webclient.php3); /script I'm assuming that you don't have control of the web server - if you do just add html to the list of extensions parsed by php

Re: [PHP] Help With Includes

2001-07-24 Thread David Robley
On Wed, 25 Jul 2001 10:26, John Holcomb wrote: Help please! I'm trying to use an include with my HTML file. Inside my HTML file I've tried: 1) script language=php include(/export/home/bayarea.net/htdocs/webclient.php3?id=2); /script AND 2) script language=php