18 lines
436 B
PHP
18 lines
436 B
PHP
|
<?php
|
||
|
// För att förenkla användandet av mb_ funktioner
|
||
|
mb_internal_encoding("UTF-8");
|
||
|
|
||
|
if(isset($_POST['text'])){ // Kontrollerar att data kommer
|
||
|
$data = $_POST['text'];
|
||
|
|
||
|
if(!mb_check_encoding($data)){
|
||
|
header('Location: index.html');
|
||
|
}
|
||
|
|
||
|
$data = strip_tags($data, "<h1>");
|
||
|
|
||
|
header('Content-Type: text/html; charset=utf-8');
|
||
|
echo ($data);
|
||
|
}
|
||
|
?>
|