0

I have some hidden inputs, however, if you view the source code, you're still able to see the value saved in the input.

How can I hide the values from the public? Encrypt then decrypt? How?

Thanks.

Burrows
  • 475
  • 2
  • 8
  • 18

1 Answers1

1

You'll need to store them as session variables if you want them hidden completely, but even then, with the right applications you can view/change these.

iam-decoder
  • 2,554
  • 1
  • 13
  • 28
  • same question is asked in http://stackoverflow.com/questions/16001849/how-to-hide-values-in-hidden-fields and http://stackoverflow.com/questions/17439146/prevent-a-line-of-source-code-from-showing – Jenz Nov 06 '13 at 04:25