Linux Redhat 8.0, Apache 2.0, PHP 4.2.2. Fresh install all from rpms.
The following simple program is NOT working on this configuration while it is working ok on windows, freebsd with other configs:
################
<html><head></head><body>
<? if (isset($name) and $name != '') { ?>
Hi <?= $name ?>!
<? } else { ?>
<form action="#" method="get">
First Name: <input type=text name="name">
<input type="submit">
</form>
<? } ?>
</body></html>
################
I put method="get" especially to see if the text field is transmitted and it is, since it appears on the IE address bar like:
http://localhost/test.php?name=David
Therefore I suspect PHP doesn't get it back somhow.
Any ideas?