Forum Moderators: coopster
If so, you'll need to figure out how the access is controlled to the page. Is it basic authentication, through something like .htaccess? If yes, you can use curl and supply a username and password.
If it's something a little more elaborate, then it could be cookie based. If so, you'll need to develop a script which logs in first (presumbly thorugh a web form on the site), reads the cookies and passes the cookies back to the site on each request. Again, curl can be used to do this.
Excuse me if i'm barking up the wrong tree.
You will also need to ensure that php is compiled with the openSSL library. I can't find a link where I found that out, but it only started working for me once I added that in.
Edit: assumed it was secure as in SSL, hopefully one of the replies will be on the right track ;)