Jump to content

preg_replace not working?


deansaddigh

Recommended Posts

i want to remove any links which get pulled  out in my general information query.

 

$general_info = $row['general_info'];
			$general= preg_replace('/<a href="([^<]*)">([^<]*)<\/a>/', '', $general_info);

			echo '<h2>General Information : <img src="images/mag.png"></h2>';
			echo '<div id="featurecontent">';
			echo '<p>'. ucfirst($general).'</p>';
			echo '</div>';

 

But the above code doesnt seem to be stripping out links.

 

Can anyone see what i am doing wrong.

 

Kind Regards

 

Dean

Link to comment
https://forums.phpfreaks.com/topic/212755-preg_replace-not-working/
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.