2024-08-26 08:40:59 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Document</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<?php
|
|
|
|
function cleanData($data) {
|
|
|
|
mb_internal_encoding("UTF-8");
|
|
|
|
|
|
|
|
if(!mb_check_encoding($data)){
|
|
|
|
header('Location: start.php');
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = strip_tags($data);
|
2024-08-30 13:43:25 +00:00
|
|
|
$data = htmlspecialchars($data);
|
2024-08-26 08:40:59 +00:00
|
|
|
$data = trim($data);
|
|
|
|
$data = stripslashes($data);
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</body>
|
|
|
|
</html>
|