Execute php or vbs code
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Execute php or vbs code
Can you send me a very little PRG example to test it here?
- Antonio Linares
- Site Admin
- Posts: 42275
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: Execute php or vbs code
Antonio,
I made some progress but this line below hCurl is returning "ValToChar not suported type yet"
hCurl := curl_easy_init()
Any idea?
Re: Execute php or vbs code
Enrico, Antonios example:Enrico Maria Giordano wrote:Can you send me a very little PRG example to test it here?
#include "c:\harbour\contrib\hbcurl\hbcurl.ch"
function Main()
curl_global_init()
? "Hello world"
? callPHP( "www.fivetechsoft.com/getip.php" )
curl_global_cleanup()
return nil
function callPHP( cUrl )
local hCurl, uValue
if ! empty( hCurl := curl_easy_init() )
curl_easy_setopt( hCurl, HB_CURLOPT_URL, cUrl )
curl_easy_setopt( hCurl, HB_CURLOPT_DL_BUFF_SETUP )
if curl_easy_perform( hCurl ) == 0
uValue = curl_easy_dl_buff_get( hCurl )
endif
endif
return uValue