Acklavidian
Acklavidian

Reputation: 205

How to send extra variables in a post from a form?

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

Answers (2)

Jason McCreary
Jason McCreary

Reputation: 73031

Hidden input fields:

<input type="hidden" name="var" value="..." />

Upvotes: 17

Sebas
Sebas

Reputation: 21542

Upvotes: 2

Related Questions