$html = file_get_contents("http://mycrib.net/?pageid=mycrib.member.profile&ID=$_POST[intMSUserId]");
preg_match("/<title>MyCrib: (.*) Profile<\/title>/", $html, $msname);
preg_match("/([\d,]+) friend\(s\)/", $html, $msfc);
preg_match("/<IMG SRC=\"(.*)\" class=\"image_default\" border=\"0\">/", $html, $msimg);
This works flawlessly except the image match sometime the image match needs to use this instead
preg_match("/<IMG SRC=\'(.*)\' class=\'image_default\' border=\'0\'>/", $html, $msimg);
This one uses single quote instead of double quotes how can I do this?