Stut wrote:
I could be mistaken, but I seem to remember reading somewhere that using that syntax to access characters in a string has been removed from PHP6. I suggest you use $string[0] instead.

(Yes, I am sleep-typing!)

Hi Stut,

Ah, thanks for bringing that up...

Changing this:

$pages[$i][0]{0}

To this:

$pages[$i][0][0]

Testing now. Thanks.  :)

Cheers,
Micky

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to