blob: c62539f491d13f8f4de67e43307e51eca94d12ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
/**
* Parameter input functions.
* This file contains functions for getting input from get/post variables.
*
* @package Elgg
* @subpackage Core
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Marcus Povey <marcus@dushka.co.uk>
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
/**
* Get some input from passed variables.
*
* @param $variable string The variable we want to return.
* @param $default mixed A default value for the variable if it is not found.
*/
function get_input($variable, $default = "")
{
// TODO: Some nice filtering here
if (isset($_REQUEST[$variable]))
return trim($_REQUEST[$variable]);
return $default;
}
?>
|