我是非常新的PHP所以希望这一切都有意义。我正在尝试用PHP制作一个网络服务。我有一个iphone应用程序,它正在调用该网络服务。我想从数据库中的网址下载视频在调用该Web服务。 这里是用于检索该URL的PHP脚本:
$q=" Select url from videos where id = '".$_REQUEST['id']."' ";
$result=mysql_query($q);
while( $rows =mysql_fetch_assoc($result) )
{
$url=$rows['url '];
//here i want code to download that file
$myarray1=array("url "=>$url );
}
我在以下链接下使用此脚本下载文件: http://phpsnips.com/579/PHP-download-script-for-Large-File-Downloads#.U4wP_iiCLIU ...... 但它没有工作。我在谷歌搜索代码,但我不明白如何使用这种情况......