Greetings,
Can anyone help me with a preg_match problem? I don't see what is the matter with the following:
<?
$page = "Hello Jon. How Are You?";
if(preg_match("/Hello (.+?). How Are You?/i",$page,$match)
{
$info[0] = $match[0];
echo $info[0];
}
?>
Any help would be much appretiated.
Thanks