Log in

View Full Version : get URL out of $post[message]


ThorstenA
04-23-2007, 06:32 PM
Hi!

I'd like to get the URL out of $post[message]. It's possible with preg_match but I am not familiar with it. It's not working with this code.

Hello, I am your Forum (http://www.vbulletin.com?forumdisplay.php=243)!

I'd like to check if url starts with http://www.vbulletin.com!

preg_match( "/\bURL=(.+)/", $post['message'], $results ) )
$checkurl = $results[1];

TheRed
04-23-2007, 09:45 PM
if (stripos($mystring, 'http://www.vbulletin.com'))
{
echo 'Found vbulletin.com';
}

ThorstenA
04-24-2007, 02:25 PM
It's not working for $post['message'] as $mystring :(