Form.php 78 B

123456
  1. <?php
  2. class Form {
  3. public function get($key) {
  4. return $_REQUEST[$key];
  5. }
  6. }