View Single Post
  #2  
Old 05-21-2007, 03:55 PM
JkWhoSaysNi JkWhoSaysNi is offline
Ruler of the graalaxy
Join Date: Feb 2005
Location: Great Britain
Posts: 488
JkWhoSaysNi is on a distinguished road
Send a message via ICQ to JkWhoSaysNi
I figured it out.

For an array to store objects it must be a TStaticVar;

PHP Code:
channel = new TStaticVar();
channel.join("chat_channel");
channel.create(topicownerchannelname);

//Doesnt work: 
test.add(channel);
echo(
test[0].channelname); 


//works:
test2 = new TStaticVar();
test2.add(channel);
echo(
test2[0].channelname); 
Strange that it used to work though.
__________________

Coming soon (Hopefully:P)
Reply With Quote