ok well the server sends this back:
Quote:
Originally Posted by server
Resource id #2
|
and my code is:
PHP Code:
<?PHP
if($getproviders= fopen("http://tv.yahoo.com/lineup?co=us&.intl=us&zip=07748&setlineupcookie=false", "r"))
{
$find= "/\<font face=arial\>\<b\>Cable Listings:\<\/b\>\<\/font\>
\<\/td\>\<td bgcolor=\"\#dcdcdc\"\>
\<font size=\"-1\" face=arial\>
For cable listings in 07748, select your cable provider:
\<br\>\<select name=\"lineup\"\>
(.*)
\<\/select\>/";
$provideroptions= preg_replace($find, "$1", $getproviders);
echo $provideroptions;
}
?>
what is going on....