In case anyone else encountered this problem. You have to edit your function and check the "has return value" box. Then your return will work. After this you have to use "Call Function" again and now you have a new field for saving results.
GET variable with spaces
-
-
@basmail said in GET variable with spaces:
Hello guys!
I want to add a variable like "12 South St Romford RM1 1RA UK" with the GET function to my database but it does not work.
A variable like "text123" is working just fine.Does anyone know what the problem is?
Thank you and best regards!
spaces in the url must be escaped. Use the encodeURIComponent() method
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent
