complex05 Posted January 5, 2007 Share Posted January 5, 2007 Hello,I've built some forum software and I would like any link that someone posts automatically be converted into a link with<a href="$url">$url</a> etc..Is there a function to do this? If it involves regex, I would need some help since I know nothing about it. Quote Link to comment https://forums.phpfreaks.com/topic/32974-text-to-link-code/ Share on other sites More sharing options...
complex05 Posted January 5, 2007 Author Share Posted January 5, 2007 *bump* Quote Link to comment https://forums.phpfreaks.com/topic/32974-text-to-link-code/#findComment-153563 Share on other sites More sharing options...
Gruzin Posted January 5, 2007 Share Posted January 5, 2007 Are you talking about bbcode, something like this?[code]<?php$textarea = $_POST['textarea'];$smilies = array( '[B]' => "<strong>", '[/B]' => "</strong>", );$codes = array_keys($smilies);$textarea = str_replace($codes,$smilies,$textarea);?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/32974-text-to-link-code/#findComment-153565 Share on other sites More sharing options...
complex05 Posted January 5, 2007 Author Share Posted January 5, 2007 no not code. lets say i'm just talking on this forum right now, and i saya cool article can be found here: www.google.comwww.google.com should automatically be converted into a link, without me putting any code around it. Quote Link to comment https://forums.phpfreaks.com/topic/32974-text-to-link-code/#findComment-153573 Share on other sites More sharing options...
wildteen88 Posted January 5, 2007 Share Posted January 5, 2007 This will require regex. You will want to write a regular expression (regex) to phish out URL's within a string and then warp the anchor tags around it to be converted to a line. I believe there may already be a thread like this in the regex forum. Search the regex forum and see. Quote Link to comment https://forums.phpfreaks.com/topic/32974-text-to-link-code/#findComment-153630 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.