Quote:
Originally Posted by killerogue
Parameters are information based inside the current event. So if I did something like this.
PHP Code:
function onCreated()
{
temp.chatText = "stuff";
this.doFunction(temp.chatText);
}
function doFunction()
{
echo(params[0]);
}
Take a guess what that would echo? 
|
the temp.chatText = "stuff"; ?