1234567891011121314151617181920212223 |
- <?php
- /** @package verysimple::HTTP */
- /** import supporting libraries */
- require_once("RequestUtil.php");
- /**
- * Static utility class for processing form post/request data
- *
- * Contains various methods for retrieving user input from forms
- *
- * @package verysimple::HTTP
- * @author VerySimple Inc.
- * @copyright 1997-2007 VerySimple, Inc. http://www.verysimple.com
- * @license http://www.gnu.org/licenses/lgpl.html LGPL
- * @version 1.0
- * @deprecated User RequestUtil instead to avoid namespace conflicts
- */
- class Request extends RequestUtil
- {
- }
- ?>
|