How to send additional variables to a message from a form?

In my php script, I have additional variables that I donโ€™t want to see the user go to _post from a to another PHP script. How to do it?

+4
source share
2 answers

Hidden input fields :

<input type="hidden" name="var" value="..." /> 
+12
source
+2
source

Source: https://habr.com/ru/post/1491523/


All Articles