PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → How to receive the form data sent to the server via HttpSendForm
How to receive the form data sent to the server via HttpSendForm
Iniciado por andy, 19,abr. 2018 20:27 - 2 respuestas
Publicado el 19,abril 2018 - 20:27
I want to send more than one field to the server. I created a Html form using HTMLCreateForm, then added the parameters to send using HttpAddParamaters. Now how to receive the data on the other side
Miembro registrado
102 mensajes
Publicado el 19,junio 2018 - 11:37
bufTmp is Buffer
HTTPCreateForm("test")
HTTPAddParameter("test","day","Tuesday")
HTTPSendForm("test",sServer)
bufTmp = HTTPGetResult()


--
http://arnoldconsult.de
WinDev 21 with Oracle, WinDevMobile Android Apps and Motorola Windows CE Mobile Barcode Scanners, Python 3 with Oracle and MySQL
Miembro registrado
102 mensajes
Publicado el 19,junio 2018 - 12:15
Hm. What do you mean with 'on the other side'? It depends on where you send it. I usually send this to a webserver running PHP and MySQL.

--
http://arnoldconsult.de
WinDev 21 with Oracle, WinDevMobile Android Apps and Motorola Windows CE Mobile Barcode Scanners, Python 3 with Oracle and MySQL