<?php
header("Content-type: text/html; charset=utf-8");
if (isset($_GET['source'])) 
{
	highlight_file(__FILE__);
	exit;
}
$msg = "Árvíztűrő 'tükörfúrógép <b>ÁRVÍZ</b>TŰRŐ TÜKÖRFÚRÓGÉP";

if (isset($_POST['search']) and trim($_POST['search']) != '')
{
	$search = $_POST['search'];
	if (get_magic_quotes_gpc())
	{
		$search = stripslashes($search);
	}
	$to = array(
		'[aá]',
		'[eé]',
		'[oóöő]',
		'[ií]',
		'[uúüű]'
	);
 
	$from = array_map(create_function('$v', 'return "/$v/u";'),$to);
	$search =preg_replace($from,$to,preg_quote($search));
	$msg = preg_replace('/'.$search.'/iu',"<span style='background-color: #000066;'>\\0</span>",strip_tags($msg));
}
?>
<html>
<head>
<title>Kereső</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<style type="text/css">
body {
	background: #446699;
	color: white;
}
a {
	color: white;
}
</style>
</head>

<body>
<a href="?source">Forrás megtekintése</a>
<form action="" method="post">
Keresett kifejezés: 
<input type="text" name="search" />
<input type="submit" value="Keres" />
</form>

Üzenet: <?php print $msg; ?>

</body>
</html>
