|
How to _POST a variable?
I have a form which posts things like the users name and stuff. But how do I post my own stuff over to the next page without having to create a textfield/etc?
Something like: $_POST['myVariable'] = 'This is what I want to send to the next page'
Which of course will be invisible to the user, but when they click submit, not only will the users name etc get posted, but I can also receive the 'myVariable'?
?
|