[code]CREATE TABLE `ban_ip` (
`ip` int(11) NOT NULL default \'0\',
`id` int(11) default \'0\',
UNIQUE KEY `ip` (`ip`)
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;[/code]
Помогите пожалуйста
И вот в этом коде подскажите как разрешить добавление адреса в зоне рф
[code]$url=mysql_real_escape_string(strtolower(preg_replace(\'/(http(s)?|ftp|tcp)\\:\\/\\//is\',\'\',filtr($_POST[\'url\']))));
$name=mysql_real_escape_string(filtr($_POST[\'name\']));
$opis=mysql_real_escape_string(filtr($_POST[\'opis\']));
$top=((int)abs($_POST[\'top\']));
if(!empty($url) and !empty($name) and !empty($opis) and !empty($top))
{
if(ereg(\"^([a-z0-9_\\-\\.]+\\.[a-z0-9]{2,5})$\",$url))[/code]