06-24-2008, 03:42 AM
[eluser]Yash[/eluser]
How can we do this?
Code:
class Usersmodel extends Model {
function Usersmodel()
{
// Call the Model constructor
parent::Model();
}
function Abc()
{
//some code is here
}
function 123()
{//I want to use here
}
function TBG()
{//I want to use and here
}
}
How can we do this?