02-07-06, 16:05
|
# 5
|
משתמש - היכל התהילה
|
ציטוט:
נכתב במקור על ידי drowkid
PHP קוד:
function no_inc($str)
{
$str = str_replace('"', '""', $str);
$str = str_replace("'", "'", $str);
$str = str_replace("`", "`", $str);
$str = str_replace('(', '("', $str);
$str = str_replace(")", ")", $str);
$str = str_replace(";", ";", $str);
return $str;
}
היה לי משעמם
|
lol
htmlspecialchars()

|
|
|