Request.php 595 B

1234567891011121314151617181920212223
  1. <?php
  2. /** @package verysimple::HTTP */
  3. /** import supporting libraries */
  4. require_once("RequestUtil.php");
  5. /**
  6. * Static utility class for processing form post/request data
  7. *
  8. * Contains various methods for retrieving user input from forms
  9. *
  10. * @package verysimple::HTTP
  11. * @author VerySimple Inc.
  12. * @copyright 1997-2007 VerySimple, Inc. http://www.verysimple.com
  13. * @license http://www.gnu.org/licenses/lgpl.html LGPL
  14. * @version 1.0
  15. * @deprecated User RequestUtil instead to avoid namespace conflicts
  16. */
  17. class Request extends RequestUtil
  18. {
  19. }
  20. ?>