Quote:
|
Originally Posted by Yen
And I agree with Fox. Plus, an array with one value isn't an array..
However, I think you should be able to read a variable that's not an array with var[0].
PHP Code:
function onCreated() {
this.cookies = 7;
chat = this.cookies[0];
}
|
PHP Code:
function onCreated()
{
rname = "LINDA";
echo(rname SPC rname[0]);
}
... produces "LINDA LINDA".