I Installed Apache 1.3.24 and PHP 4.2.0 on RedHat 7.2 and it will
execute scripts but it wont except variables... example:

script.php:

Code:
<html>
<?
echo "hello $var";
?>
When I go to www.domain.com/script.php?var=name i sould get an output
of "hello name" but I don't. I just get "hello"

How can I configure it to except variables?

Thanks