Parašė Narysx· 2010 Rugp. 13 14:08:15
#16
Pasiredaguok stripinput funkciją iš fusion maincore.php failo. Tada visur dėk
$ipas = stripinput($_POST['ipas']);
ir viskas. ;)
EDIT:
va:
function stripinput($text) {
if (QUOTES_GPC) $text = stripslashes($text);
$search = array("<b>", "<u>");
$replace = array("", "");
$text = str_replace($search, $replace, $text);
return $text;
}
Manau suprasi kur rašyti simbolius, kurių nenori įleisti. ;)
Redagavo Narysx· 2010 Rugp. 13 14:08:55