Hi,
I'm using php-4.3.4. As long as I do not use functions in my php code, it works fine. Ex:
<?php
$test_var1 = 1;
$test_var2 = 2;
if ($test_var1 == $test_var2)
{
echo "test_var1 == test_var2";
}
else
{
echo "test_var1 != test_var2";
}
?>
But if I try to use phpinfo() or any other php function, I get an error "Fatal error: Call to undefined function: phpinfo() in /apache/htdocs/phpinfo.php on line 6" always Fatal error for any other function.
Does anybody have a clue ?
Hugo