Posted by Jochem Maas on 10/24/05 11:31
Bob Hartung wrote:
> Jasper
> If if make a file containing only
> <?php
> phpinfo() ;
> ?>
> I get what I expected.
take a good look at where php is reading its ini file from
- it may not be where you expect
>
> If I make a file containing
> <?php
>
> phpinfo() ;
>
> // Now a simple class and a call to the class
> class Simple()
> {
> void __construct()
'void' is not a php keyword. that would give a parse error
> {
> echo "In the constructor" ;
> }
> }
>
> $newSimple = new Simple ;
>
> ?>
>
> I get NO output or errors in the browser window. If I select "view
> source" it returns:
> <html><body></body><html>
>
> Eh? Anyone with any other ideas
>
> Tnx
>
> Bob Hartung
>
> Jasper Bryant-Greene wrote:
> <snip all before.
>
Navigation:
[Reply to this message]
|