
October 6th, 2004, 01:26 AM
|
 |
Contributing User
|
|
Join Date: Jul 2001
Location: Midrand, South Africa
Posts: 154
 
Time spent in forums: 2 Days 15 h 1 m 56 sec
Reputation Power: 8
|
|
IIS & PHP - Forms posting problem
I've setup my home computer(XP) with IIS and PHP. It works perfectly, except for one problem.
If I use the following code on a page named mypage.php,
Code:
<form name="myform" method="post" action="">...</form>
the server responds with Error 404, even though the url in the address bar is still mypage.php.
If I change the code to
Code:
<form name="myform" method="post" action="mypage.php">...</form>
, it works perfectly.
Is there some setting that will enable me to use code as in the first example?
|