Hello, I am newbie for this maillist.I have met a problem with PHP4.3.1 and apache1.3.27, which is unable to pass parameters to php over apache.My installation process is as following: PHP4.3.1: ./configure --with-mysql=/usr/local/mysql --with-apache=../apache_1.3.27 --e nable-track-vars make make install apache: ./configure --activate-module=src/module/php4/libphp4.a make install after all above process, I test the followin program, and it work correctly: <html> <body> <? phpinfo() ?> </body> </html> and then I test the following Code(in.php), it works in correctly: <html> <body> <form action="in.php" method=GET> UserName:<input type="text" name="UserName"><br> password:<input type="text" name="Pass"><br> <input type="submit" name="submit" value="submit"> </form> <? print("UserName:$UserName<br>"); print("PassWord:$Pass<br>"); ?> </body> </html> In the above in.php program, I cann't pass parameters values to UserName and Pass. I don't know it's why? Thanks in advance! Sincerely XiaoZheng Ning -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php