Hi all there is a remote html page that has artist,songname and image url .
I want to get these infromation as variables when ever i pull that page .
i tried the following solution but it doesn't output the image url for me( .
could any one tell me what i am doing wrong and how to fix it.Also i want these information
as varibles inteasd of current output type.Thanks
Note: the information that i want to extract are shown in bold.
Html of page that i want to pull every few seconds:
<table border=0 width="280" bgcolor="#FFFFFF" cellpadding=5><tr><td align="center" width="80">
<a href=" target="_blank"><img border="0" src=" border="0"></a></td><td width="100" style="font-family:Arial; font-size:12px; color:#000000;">the power of love<br>"celine dion"</td><td valign="top"><table><tr><td><table><tr><td><a href=" target="_blank"><img border="0" src=" width="30" height="30" border="0"></a></td><td><font size="1" face="Arial" color="red"><b>RADIO<br> </b></font></td></tr></table></td></tr><tr><td><a href=" target="_blank"><img border="0" src=" href=" target="_blank"><img border="0" src="
current output image attached:
I want to get these infromation as variables when ever i pull that page .
i tried the following solution but it doesn't output the image url for me( .
could any one tell me what i am doing wrong and how to fix it.Also i want these information
as varibles inteasd of current output type.Thanks
Code:
<?PHP
$html = file_get_contents("./test.html");
//preg_match("/<img border=\"0\" src=\"(.*)\" border=\"0\">$/", $html, $urls);
//preg_match("<td width=\"100\" (.*)>(.*)</td>", $html, $tdmatch);
preg_match("/<td width=\"100\" (.*)>(.*)<\/td>/", $html, $tdmatch);
echo "<pre>";
//var_dump($urls);
var_dump($tdmatch);
echo "</pre>";
?>
Note: the information that i want to extract are shown in bold.
Html of page that i want to pull every few seconds:
<table border=0 width="280" bgcolor="#FFFFFF" cellpadding=5><tr><td align="center" width="80">
<a href=" target="_blank"><img border="0" src=" border="0"></a></td><td width="100" style="font-family:Arial; font-size:12px; color:#000000;">the power of love<br>"celine dion"</td><td valign="top"><table><tr><td><table><tr><td><a href=" target="_blank"><img border="0" src=" width="30" height="30" border="0"></a></td><td><font size="1" face="Arial" color="red"><b>RADIO<br> </b></font></td></tr></table></td></tr><tr><td><a href=" target="_blank"><img border="0" src=" href=" target="_blank"><img border="0" src="
current output image attached: