PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
Does anybody can help w ssl connections ? i need to connect to ssl server (https) in my script, post some data, recive answer, parse it and so on. I just don't know how to connect to such server from script. Help !
Generally scripts run on the SSL server, there isn't any difference in the scripts it is the webserver that handles the encryption of the data as it is passed to the client.
mikeq wrote:Generally scripts run on the SSL server, there isn't any difference in the scripts it is the webserver that handles the encryption of the data as it is passed to the client.
fsockopen wont support secure socket layers until PHP 4.3.0 (trust me, I've looked)
so, for now, you'll need to compile in cURL support and get the cURL software for the machine you're running the script on. It's pretty easy to use if you know a little bit about HTTP.