Написал функция заменить " на ", в цикле обрабатываю поля.
function quot_fix($text) {
$htmlcode = '"';
$character = '"';
return str_replace($htmlcode, $character, $text);
}
function quot_strip($text) {
$htmlcode = '"';
return str_replace($htmlcode, '', $text);
}
Выдает ошибку
Fatal error: Cannot redeclare quot_fix() (previously declared in /var/www/test/data/www/test.ru/cb/include/functions1.php(254) : eval()'d code:13) in /var/www/test/data/www/test.ru/cb/include/functions1.php(254) : eval()'d code on line 13
Заранее спасибо!














