RE: [PHP-INST] Need help putting a small pice of code on an html page

2003-01-09 Thread Joerg Aldinger
: Thursday, January 09, 2003 10:02 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-INST] Need help putting a small pice of code on an html page I found a post a codingforums.com where someone is asking how to pull php scripts from another directory. http://www.codingforums.com/showthread.php?s=&thre

RE: [PHP-INST] Need help putting a small pice of code on an html page

2003-01-09 Thread Mike Young
I found a post a codingforums.com where someone is asking how to pull php scripts from another directory. http://www.codingforums.com/showthread.php?s=&threadid=12506 --- Joerg Aldinger <[EMAIL PROTECTED]> wrote: > Mike, > > there are several solutions to your problem. Here > are a few: > >

RE: [PHP-INST] Need help putting a small pice of code on an html page

2003-01-09 Thread Joerg Aldinger
ST] Need help putting a small pice of code on an html page Actually, I'm using two hosts, one is apache and the other is zeus but I'm slowly moving everything go the apache host. I'll try what you suggested. Although, I was wondering if you could link it like an external css file,

RE: [PHP-INST] Need help putting a small pice of code on an html page

2003-01-09 Thread Mike Young
Actually, I'm using two hosts, one is apache and the other is zeus but I'm slowly moving everything go the apache host. I'll try what you suggested. Although, I was wondering if you could link it like an external css file, something like link href=somefile.php Probably not, haven't tried that but

RE: [PHP-INST] Need help putting a small pice of code on an html page

2003-01-08 Thread Joerg Aldinger
Mike, there are several solutions to your problem. Here are a few: 1) Redirect visitors to the new page To do this, create/modify a .htaccess file in the directory where your old page is and include the following line: Redirect permanent oldpage.html http://yourserver.com/newpage.php T