I have the following HTML and I need to extract the URL inside VALUE
<param name="movie" value="http://domain.com/path/to/file.swf" />
I tried the following, with no success.
preg_match("'<param name=\"movie\" value=\"(.*?)\" />si'", $source, $url);
echo $url[1];
What am I doing wrong?