You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
407 B
31 lines
407 B
11 years ago
|
<?php
|
||
|
#
|
||
|
function nuem($str)
|
||
|
{
|
||
|
if (($str === null) or $str == '')
|
||
|
return true;
|
||
|
else
|
||
|
return false;
|
||
|
}
|
||
|
#
|
||
|
function getparam($name, $both)
|
||
|
{
|
||
|
$a = null;
|
||
|
if (isset($_POST[$name]))
|
||
|
$a = $_POST[$name];
|
||
|
|
||
|
if (($both === true) and ($a === null))
|
||
|
{
|
||
|
if (isset($_GET[$name]))
|
||
|
$a = $_GET[$name];
|
||
|
}
|
||
|
|
||
|
if ($a == '' || $a == null)
|
||
|
return null;
|
||
|
|
||
|
// limit to 1K just to be sure
|
||
|
return substr($a, 0, 1024);
|
||
|
}
|
||
|
#
|
||
|
?>
|