2011-06-02 00:48:29 +02:00
|
|
|
<?php
|
2011-06-02 23:41:50 +02:00
|
|
|
|
|
|
|
function strip_request_item($name) {
|
|
|
|
return preg_replace(
|
|
|
|
"/([^\p{L}\p{P}\p{Z}\p{N}]{1,})/ui",
|
|
|
|
'',
|
|
|
|
strip_tags($_REQUEST[$name])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-06-03 11:09:25 +02:00
|
|
|
function strip_request_item_nl($name) {
|
|
|
|
return preg_replace(
|
|
|
|
"/([^\p{L}\p{P}\p{Z}\p{N}\n]{1,})/ui",
|
|
|
|
'',
|
|
|
|
strip_tags($_REQUEST[$name])
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-06-02 00:48:29 +02:00
|
|
|
function error($msg) {
|
|
|
|
return '<p class="error">' . $msg . '</p>';
|
|
|
|
}
|
|
|
|
|
|
|
|
function success($msg) {
|
|
|
|
return '<p class="success">' . $msg . '</p>';
|
|
|
|
}
|
2011-06-02 23:41:50 +02:00
|
|
|
?>
|