If you want to do it within the query itself, take a look at the mysql replace command
REPLACE(str,from_str,to_str) SELECT REPLACE(<field>,<from>,<to>) FROM table or you can do it using PHP once the query has executed, on a record by record basis, within a while/for loop or whatever. -----Original Message----- From: Paul Marinas [mailto:[EMAIL PROTECTED]] Sent: Sunday, 19 January 2003 11:07 AM Cc: [EMAIL PROTECTED] Subject: [PHP] SQL+php Dose anyone know how to search and replace a string in a mysql_query output. Thanks, Paul -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

