I have a problem using include function
ie
("http://www.domain.com/file_name.html")
example of error
Warning: Failed opening 'http://localhost/includes/display_ads.inc' for inclusion (include_path='.;c:\Program Files\Apache Group\Apache\htdocs\development'
I have checked my httpd.conf and it contains the following
ServerRoot "C:/Program Files/Apache Group/Apache"
DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs/development"
I have changed the include_path in php.ini to both the following but it still do not work, why???
include_path=".;c:\Program Files\Apache Group\Apache\htdocs\development"
AND changed to
include_path=".;c:\Program Files\Apache Group\Apache\"
Do I need to change additional variables in PHP.ini?
Thanks
Colin