Forum Moderators: coopster
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 261904 bytes) in ****\index.php on line ** class MainClass{
protected function PrintFile($val){
print(highlight_file($val,true));
}
}
class InClass extends MainClass{
public function PrintFile($val){
$this->PrintFile($val);
}
}
$class = new InClass();
$class->PrintFile($_POST['file']); ini_set('memory_limit', '12M');