Execute php or vbs code

User avatar
Antonio Linares
Site Admin
Posts: 42275
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: Execute php or vbs code

Post by Antonio Linares »

regards, saludos

Antonio Linares
www.fivetechsoft.com
wartiaga
Posts: 212
Joined: Wed May 25, 2016 1:04 am

Re: Execute php or vbs code

Post by wartiaga »

Antonio Linares wrote:Here is the fix:

https://fivetechsupport.com/forums/view ... 57#p261933
Antonio,

I made some progress but this line below hCurl is returning "ValToChar not suported type yet"

hCurl := curl_easy_init()

Any idea?
wartiaga
Posts: 212
Joined: Wed May 25, 2016 1:04 am

Re: Execute php or vbs code

Post 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
Post Reply