For the most part I'm successful in getting php to work with a windows based server (wildcat interactive net server by Santronics.com). My major problem is that the redirect function of php does not seem to work. If I create a simple test.php file with the following script in it:
<?php
header("Location: http://www.dobbbs.com");
exit;
?>
The resulting output from IE6 loading up test.php is as follows (debug is on):
(null) Content-type: text/html X-Powered-By: PHP/4.3.0 Location: http://www.dobbbs.com
Does anyone know why I can't seem to use the location header function? I'm using winxp sp1, php 4.3.0, and cgi-scripting with WINS. I'm not sure if this is a Server problem, php config problem, or related to windows IE6.
Thanks for any help. Motu.