|
Posted by chris.huh on 11/15/06 14:27
Absolutely Brilliant....
That was all it was, duh.
Thanks a lot pangea33, just goes to show, ancient broken up
supercontinents aren't as dead as we all thought.
pangea33 wrote:
> Create a php page on your PHP5 server, and run this function:
> phpinfo();
>
> It will give you lots of details about the server configuration. Under
> the section marked PHP Core will be a variable named: "short_open_tag"
> If it's set to off, then you have to start your code with the long tag
> "<?php" instead of "<?".
>
> This seems likely to be the problem.
>
> http://us2.php.net/ini.core
>
> On Nov 14, 1:57 pm, "chris.huh" <chris....@gmail.com> wrote:
> > Oh, cheers. i will have to find out what must be wrong with my local
> > php. I just installed WAMP5, which seems pretty good so maybe something
> > is set differently.
> >
> > Thanks
> >
> > J.O. Aho wrote:
> > > chris.huh wrote:
> > > > I have a bit of code i got from a site a while ago. I notice now that
> > > > the script does not work on my local machine running php5 but does work
> > > > on my hosting server with php4 on it so i am guessing it is somethign
> > > > to do with that.
> >
> > > > The code is:
> >
> > > > <?
> > > > $textfile ="random.txt";
> > > > $items = file("$textfile");
> > > > $item = rand(0, sizeof($items)-1);
> > > > echo $items[$item];
> > > > ?>
> >
> > > > Does anything think that it is because of the versions and if it is how
> > > > to fix it?
> >
> > > PHP 5.1.6 (cli) (built: Oct 12 2006 17:00:51)
> > > Copyright (c) 1997-2006 The PHP Group
> > > Zend Engine v2.1.0, Copyright (c) 1998-2006 Zend Technologies
> >
> > > No trouble at all with the unmodified small script, just your local php that
> > > must be broken somehow.
> >
> > > //Aho
Navigation:
[Reply to this message]
|