Hello everyone,
This is probably a really easy question but I want to create a link that when it was clicked on it went to a function in another class. Sorry I am new to classes.
I tried for example:
in Class Team{
function menu(){
var $script; // this is set to be an object for the Class Script;
print"<a href=\"$this->script->
showTeamRoster() \">Team Roster </a>";
// script in this link is pointing to the Class Script, and showTeamRoster is a function in that class.
}
}