Jump to content

Remove http://


SkyRanger

Recommended Posts

Ok how would I do that if it is in the middle of a test ie:

 

 

Hello visit this site it is cool http://www.thissite.com

 

$comtext = "Hello visit this site it is cool http://www.thissite.com"

 

This is the code i have now:

$comname = $rowco['mcname'];
$comtext = $rowco['mctext'];

echo "<b>";
echo strip_tags($comname);
echo "</b><br>";
echo nl2br(strip_tags($comtext));
echo "<hr>";

Link to comment
Share on other sites

Guess I never got it working...well sort of.  using str_replace I can get the http:// and www. to  remove using an array.  But is there a way using string replace to remove the who URL that somebody posts.  It might be in the str_replace php page but I seem to be overlooking something.

 

$urlgarbage = array("http://", "www.");
$comtext = str_replace($urlgarbage, 'BADCODE', $comtexta); 

echo $comtext;

 

So what I am saying is I would like to do something like:

 

Change:  Check out http://www.thissite.tld now.

To:  Check out BADCODE now.

 

Is this possible using str_replace?

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.