Follow along with the video below to see how to install our site as a web app on your home screen.
Бележка: This feature may not be available in some browsers.
echo("<a href='".$file."' target=_blank>".str_replace($dir, "", $file)."</a><br />\n");
$noext = current(explode(".",$file));
echo("<a href='".$file."' target=_blank>".str_replace($dir, "", $noext)."</a><br />\n");
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<title>Search</title>
</head>
<body>
<center>
<form action="search.php" method="post">
<input type="text" name="searched">
<input type="submit" value="search">
</form>
<?php
$flag=0;
$dir="directory/";
if(isset($_POST['searched'])) {
foreach(glob($dir."*") as $file) {
if(@eregi($_POST['searched'], str_replace($dir, "", $file))) {
$noext = current(explode(".",$file));
echo("<a href='".$file."' target=_blank>".str_replace($dir, "", $noext)."</a><br />\n");
$flag+=1;
}
}
if($flag==false) {
echo("Няма намерени файлове.");
}
}
?>
</center>
</body>
</html>