like php code below :
<?php
$Query = $mysqli->query("select * from table");
$Query->fetch_array(); // <== how to make a class and method can be overide like this??
?>
how to make a class an method an stored to a variable, and call again by method? like $mysqli and $query above?
