Jump to content

Make URL's Clickable Hyperlinks


19edie68

Recommended Posts

First of all, I apologize for not knowing all the technical terms. The code below is what I'm using to write to a file which is then shown on a very simple chat I've made. I want URL's to automatically be converted to clickable hyperlinks. I've found many snippets of code to make this happen but have no idea how to implement them into my code or which one is the right choice. Thanks for any help :)

<?php
if (isset($_POST["submit"]) && $_POST["message"] != "") {
date_default_timezone_set("America/Los_Angeles");
$txt = "
<span class=\"date\">Captain's Log - Stardate: ". date("njy @ giA") ."</span><br/>"
. stripslashes(nl2br($_POST["message"])) . "<br/>"
. "<div class=\"line\"></div>
";
$file_data = "$txt";
$file_data .= file_get_contents('txt.txt');
file_put_contents('txt.txt', $file_data);
}
?>
Edited by 19edie68
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.