Jump to content

Recommended Posts

i want that http://www.google.com will be http://www.google.com

automatic

i try this:

<?php
function hyperlink(&$text)
    {
       // match protocol://address/path/file.extension?some=variable&another=asf%
       $text = preg_replace("/\s(([a-zA-Z]+:\/\/)([a-z][a-z0-9_\..-]*
[a-z]{2,6})([a-zA-Z0-9\/*-?&%]*))\s/i", " <a href=\"$1\">$3</a> ", $text);
   
       // match www.something.domain/path/file.extension?some=variable&another=asf%
       $text = preg_replace("/\s(www\.([a-z][a-z0-9_\..-]*
[a-z]{2,6})([a-zA-Z0-9\/*-?&%]*))\s/i", " <a href=\"http://$1\">$2</a> ", $text);
      
       return $text;
    }
?>

 

but its doing a problam with: ?&_

 

how can i solve this?=[

That makes no sense.

 

basically, i think what he means is for instance if someone types in "google.com" or "www.google.com" its just pure text, he wants to convert it into a href hyperlink so when he outputs it in html it shows as a hyperlink..

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.