| 
 Posted by Robert Iver on 06/08/06 17:49 
I would change the code to the following and see what happens: 
 
<HTML> 
<HEAD></HEAD> 
<BODY> 
<?php 
   echo("Hello World!"); 
    // need parentheses for echo() function 
 ?> 
</BODY> 
</HTML> 
 
Also, make sure the filename has the .php extension and not .html 
 
Let me know if that works for you.... 
 
TristaSD wrote: 
> Here's my code: 
> 
> <html> 
> <head> 
> </head> 
> 
> <body> 
> 
> <? 
>      echo "Hello, world!"; 
> ?> 
> 
> </body> 
> </html> 
> 
> Here's my output: 
> 
> Hello, world! 
> Fatal error: Nesting level too deep - recursive dependency? in Unknown 
> on line 0
 
[Back to original message] 
 |