PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → 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
Débuté par Anand, 19 avr. 2018 20:27 - 2 réponses
Posté le 19 avril 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
Membre enregistré
102 messages
Popularité : +2 (2 votes)
Posté le 19 juin 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
Membre enregistré
102 messages
Popularité : +2 (2 votes)
Posté le 19 juin 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