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.
<?php
function latinica($lat){
$latinica=array("a","b","v", "g","d","e", "j", "z", "i", "ii", "k", "l", "m","n","o", "p","r","s", "t","u","f", "h","c","ch" , "sh","sht", "u", "io", "iu", "q", "A","B","V", "G","D","E", "J", "Z", "I", "II", "K", "L", "M","N","O", "P","R","S", "T","U","F", "H","C","CH" , "SH","SHT", "U", "IO", "IU", "Q"); //латинските букви
$kirilica=array("а", "б", "в", "г", "д", "е", "ж", "з", "и", "й", "к", "л", "м", "н", "о", "п", "р", "с", "т", "у", "ф", "х", "ц", "ч", "ш", "щ", "ъ", "ь", "ю", "я", "А", "Б", "В", "Г", "Д", "Е", "Ж", "З", "И", "Й", "К", "Л", "М", "Н", "О", "П", "Р", "С", "Т", "У", "Ф", "Х", "Ц", "Ч", "Ш", "Щ", "Ъ", "Ь", "ю", "Я"); //кирилица, съответстващ на латиницата по-горе
$bbc_num=count($kirilica); //бройм елементите във $kirilica
$loop=0;
while($loop<$bbc_num){
$lat=str_replace($kirilica[$loop], $latinica[$loop], $lat); //заместваме
$loop++;
}
return $lat;
}
$strings = latinica($lyric_kirilica);
?>
<form method="get" action="index.php">
<input type="text" name="search" value="Моля пишете на латиница..." onblur="login_inputs_change('blur', this)" onfocus="login_inputs_change('focus', this)" />
<input type="hidden" name="source" value="4shared"/>
<input class="button-flat search-button" type="submit" value="Търси"/>
</form>
Digi7aL каза:Сложи <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> и само това и страницата ти ако е направена UTF-8 (без BOM), я направи в ANSI![]()
Digi7aL каза:Сложи <meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /> и само това и страницата ти ако е направена UTF-8 (без BOM), я направи в ANSI![]()