i am using this code for save a file,how to add progressbar in it? i tried with adding your progressbar code but its not working.
PHP Code: 
function curldlfile($link$saveto)
{
    
$handle fopen($saveto'w');
    if (
$handle)
    {
        
$ch curl_init$link);
        
curl_setopt($chCURLOPT_HEADER1); 
        
curl_setopt($chCURLOPT_FOLLOWLOCATION1);
        
curl_setopt($chCURLOPT_FILE$handle);
     
curl_setopt($chCURLOPT_USERAGENT'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.1) Gecko/20061204 Firefox/2.0.0.1');
        
curl_exec($ch);
        
curl_close($ch);
        
fclose($handle);
    }
    else
    {
        echo 
"<br />Change DownLoad To Folder to 777?";
        exit();
    }