Jump to content

Need help understanding how to turn input url into clickable link


codeboy89

Recommended Posts

Alright, I found the following function online.

 

function HyperlinkText($text) {
return ereg_replace("[[:alpha:]]+://[^<>[:space:]]+[[:alnum:]/]", "<a href=\"\\">\</a>", $text);
}

 

Can anyone explain to me how I would use this function to turn a url into a clickable link. I want to use it on a input field named "bull". Here is my code currently that takes data and submits it to an XML file to be viewed.

 

$file_name = "bb.xml";
$file_act = fopen($file_name, "r+");
$lock = flock($file_act, LOCK_EX);
$file_read = fread($file_act, filesize($file_name));

$date = date ("j M Y");
$post = "<bb>\n<p>$name  $date<br />$bull</p>\n</bb>\n";

$post = stripslashes($post);
fwrite($file_act, "$post");
fclose($file_act);

 

I am not sure how to incorporate this function. I would really appreciate any help.  :D

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.