[eluser]vbsaltydog[/eluser]
A single server request to CI will run a single method of a single controller, as defined in the URI as:
/controller/method/parameter1/parameter2/etc
You do not typically run more than one method in a single server request but if you need to then you do it with:
Code:
$this->method($parameters);
from within the method called by the URI.