Hi,
Please consider the following:
--------------------------------------------------------------
Cool.php
--------------------------------------------------------------
<?php
include_once "Common.class.php";
include_once "Test.class.php";
$common = new Common;
--------------------------------------------------------------
Common.class.php
--------------------------------------------------------------
<?php
class Common
{
public blahblah;
public function __construct()
{
blah blah
}
public function initSomething()
{
//Do something
}
}
--------------------------------------------------------------
Test.class.php
--------------------------------------------------------------
<?php
class Test
{
public function __construct()
{
initSomething(); // This is the method in the Common class and I want to use it here.
}
}
In Test.class.php I want to use the initSomething() method in the Common class and in this case how do you normally archive this?
Thanks in advance.