Hi,
I am trying to crate a local server on my personal computer and to run a PHP script in it.
I downloaded OmniHTTPd v2.10 for windows and installed it.
The scripts aret:
1MAIN.HTML
<html>
<head>
<title>1</title>
</head>
<body>
<form action="C:\httpd\HtDocs\1.php" method="GET">
<input type="text" name="user">
<input type="submit" value="hit it!">
</form>
</body>
</html>
1.PHP
<html>
<head>
</head>
<body bgcolor="#33ffff" text="#000110" link="#0000ee" alink="#0000ee" vlink="#551a8b">
<?php
print $user ;
?>
</body>
</html>
When I run the 1main.html in netscape 7 I do not get and reponde and the screen do not change.
In IE6 the screen change to the light blue but do not print the user (tried print_r, echo) and put in the address windows the following file:///C:/httpd/HtDocs/1.php?user=aaa.
aaa is the input.
Can any one tell me how can I print the input data from HTML form.
Thx.

