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.
$ban = array("%","<",">","cmod","alert","object",".swf");
foreach($no as $key)
{
if (eregi("$key.*",$promenliva) )
$banned = true;
}
if ( $banned ){
die("edi si kakvo");
}
<?php
$text = $_GET['text'];
$net = $_GET['net'];
$get = $_GET['get'];
$promenlivi = array($text,$net,$get);
$ban = array("%","<",">","cmod","alert","object",".swf");
foreach($ban as $key)
{
foreach($promenlivi as $prom)
{
if(eregi($key,$prom))
$banned = true;
}
}
if ($banned){
die("edi si kakvo");
}
?>