Thanks tsinka and all friends problem is solved through this
<?PHP
$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,"https://test.com/admin/orders.cgi/orders.dat");
curl_setopt($ch,CURLOPT_USERPWD,"user:password");
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
// only use the following line if the server doesn't
// have a valid CA Cert
curl_setopt($ch,CURLOPT_SSL_VERIFYPEER,FALSE);
curl_setopt($ch,CURLOPT_HEADER,0);
$content = curl_exec($ch);
curl_close($ch);
echo "<pre>$content</pre>";
?>
i got a file CSV ... here i need more help since i got a CSV file now i want to send data to database what i do here ....???
some more here as $content contain this CSV data so when we print $content it print on Browser window like CSV date ......