PDA

View Full Version : IIS XP: Post method not working


Terry
11-11-2002, 07:29 AM
Hi,

I installed php4 on my IIS for xp and everything is working fine except for the post method is not being passed at all. The get method works fine, though. Also $PHP_SELF won't work either. Anyone know how I can correct this?

Terry

Nightfire
11-13-2002, 12:27 PM
Try

$_SERVER['PHP_SELF']
or
$HTTP_SERVER_VARS['PHP_SELF']


And to get stuff from forms,

$_POST['formfield']
or
$HTTP_POST_VARS['formfield']