Posted by Jerry Stuckle on 02/15/06 03:30
Tony Wainwright wrote:
> Hi guys
> I am still having a problem parsing a html page with php. Code in my HTML
> is
> <? php
> echo '<a href="index.php">Home</a><br />
> <a href="login.php">Login</a><br />
> ';
> ?>
> However the link is to the Login page is:
> file:///C:/Program%20Files/Apache%20Group/Apache2/htdocs/TeeJayUu/login.php
>
> I am using PHP 5.0.2, Apache 2.0.52, MySQL 4.0.21, and Windows XP SP2. All
> pages are in the htdocs folder and the following instructions have been
> followed:
> - Copy php5apache2.dll to Apache's module dir and rename it to mod_php5.so;
> - Copy php5ts.dll to Apache's bin dir.
> Finally, add the following line to your httpd.conf file:
> LoadModule php5_module modules/mod_php5.so
> Apache has been stopped and restarted.
> Help - I am lost for what else to do. I want to keep this local until I
> have got it working.
> Thanks
> Tony
>
>
It looks like you're trying to open the file from the disk instead of
accessing it through the web server.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
[Back to original message]
|