Here is what I'm attempting to do, but if you know a better way I would appreciate you sharing it
function create(name,age)
{
<? $name = name; echo $name; ?> = new character(name,age);
}
function character(name,age)
{
this.name = name;
this.age = age;
}
Any and all help would be appreciated Edited by jakevfr, 23 September 2006 - 10:15 AM.
