Reputation: 205
In my php script I have additional variables I don't want visible to the user to be sent in a _post from a to another php script. How do I do that?
Upvotes: 7
Views: 7012
Reputation: 73031
Hidden input fields:
<input type="hidden" name="var" value="..." />
Upvotes: 17
Reputation: 21542
Upvotes: 2