I'm trying to read this page into a variable in PHP:
https://www.broderbros.com/cgi-bin/broderliv/inx_productPage.htm?sr=5930
I installed the extension open ssl but when I call this:
$handle = fsockopen("https://www.broderbros.com/cgi-bin/broderliv/inx_productPage.htm?sr=5930", 80);
I get this:
Warning: fsockopen() [function.fsockopen]: unable to connect to https://www.broderbros.com/cgi-bin/broderliv/inx_productPage.htm?sr=5930:80 (Unable to find the socket transport "https" - did you forget to enable it when you configured PHP?) in C:\PHP Site\broderbros\fopen.php on line 14
So I tried this:
$handle = fsockopen("https://www.broderbros.com/cgi-bin/broderliv/inx_productPage.htm?sr=5930", 80);
But I get this:
Warning: fsockopen() [function.fsockopen]: php_network_getaddresses: getaddrinfo failed: No such host is known. in C:\PHP Site\broderbros\fopen.php on line 14
Warning: fsockopen() [function.fsockopen]: unable to connect to ssl://www.broderbros.com/cgi-bin/broderliv/inx_productPage.htm?sr=5930:80 (Unknown error) in C:\PHP Site\broderbros\fopen.php on line 14
test
And if I say "this" any more, I might just shoot myself. Does anyone know what the problem is?