wget() parameters truncated from the first space
Posted: Mon May 02, 2016 10:07 am
Code: Select all
wget("192.168.178.23/esp/pin.php?Action=Message&mfrom=" & dev & "&mto=System&mtype=1&mess=Door/Window opened")
will truncate then parameters from the space after "...Window", so " opened" will not be transmitted.
Code: Select all
wget("192.168.178.23/esp/pin.php?Action=Message&mfrom=" & dev & "&mto=System&mtype=1&mess=Door/Window_opened")
works.
Bug or feature?