Jump to content

[SOLVED] Replace


unidox

Recommended Posts

I am trying to replace any html tags with [ or ]. I keep getting this error:

 

Warning: ereg_replace() [function.ereg-replace]: REG_EBRACK

 

in

function message($string) {

global $db_connect;

$string = ereg_replace("\'\";|`,", "", $string);

$string = ereg_replace("[(<", "[", $string);

$string = ereg_replace(")>]", "]", $string);

return $string;

}

 

Whats wrong

Link to comment
https://forums.phpfreaks.com/topic/105098-solved-replace/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.