I installed PHP 4.2.2 on an Apache 1.3 Server. Everything works fine. But unfortunately I can't write data into arrays. For example:
<HTML>
<HEAD>
<TITLE>Using Arrays</TITLE>
</HEAD>
<BODY>
<?php
$Soups = array(
"Monday"=>"Clam Chowder",
"Tuesday"=>"White Chicken Chili",
"Wednesday"=>"Vegetarian");
print ("$Soups<P>\n");
?>
</BODY>
</HTML>
This easy skript prints nothing but
Array
The same script prints the data correctly on a commercial webserver, therefore it's not the script. So it must be my installation.
Has anyone here experienced comparable problems or a solution?
Cheers,
Cooch