I'm trying to do a simple script like this with easyphp
installed on my pc:
<?php
include_once ('C:\EasyPHP-Devserver-17\eds-binaries\php\php713vc14x86x170802204733\simple_html_dom.php');
$html = file_get_html('https://www.sports-reference.com/olympics/summer/1896/');
echo $html;
?>
I enabled in php.ini the php_openssl extension but I still get the error:
Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? in C:\EasyPHP-Devserver-17\eds-binaries\php\php713vc14x86x170802204733\simple_html_dom.php on line 75
What else could I do?
I have this from phpinfo:
I tried to put php.ini files into c:\windows but it still does not work.