Page 2 of 2
Re: Execute php or vbs code
Posted: Sat Sep 02, 2023 3:56 pm
by Enrico Maria Giordano
Can you send me a very little PRG example to test it here?
Re: Execute php or vbs code
Posted: Sat Sep 02, 2023 4:23 pm
by Antonio Linares
Re: Execute php or vbs code
Posted: Sat Sep 02, 2023 10:41 pm
by wartiaga
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
Posted: Sun Sep 03, 2023 2:47 am
by wartiaga
Enrico Maria Giordano wrote:Can you send me a very little PRG example to test it here?
Enrico, Antonios example:
#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