http / https
If the URL starts with
https
it will make a request on
443
$ch = curl_init("https://xdatavpn.example.com/Bank");
If it starts with
http
the request will use
80
port
$ch = curl_init("http://xdatavpn.example.com/Bank");
by Valeri Tandilashvili
4 years ago
PHP
1
Pro tip: use ```triple backticks around text``` to write in code fences