Re: Re[2]: Generic HTTP access?
- Posted by Julio C. Galaret Viera <galaret at adinet.com.uy> Jul 03, 2006
- 617 views
Have you libcURL installed on your machines? If so, download eulibcurl.e from http://www.raymondsmith.com/euphoria/downloads/eulibcurl02.zip Include eulibcurl.e in your program after changing the path to the library:
if platform() = WIN32 then path/to/libcurl.dll else path/to/libcurl.so end if
By including eulibcurl.e you can access a function called «curl_easy_get_file()» that downloads any web page. In the zip file there is also a demo: easy_download.exw. JG