I've created a script which automatically posts a username and password when the user hits a single button, thats all thats on the page, a button. The value of username & password is specified by two variables:
$uname & $pword
I then do the following -
<FORM METHOD=\"POST\" ACTION=\"$_SERVER[PHP_SELF]\">
<INPUT TYPE=\"hidden\" NAME=\"show\" VALUE=\"as\">
<INPUT TYPE=\"hidden\" NAME=\"Username\"VALUE=\"$uname\">
<INPUT TYPE=\"hidden\" NAME=\"Password\" VALUE=\"$pword\">
<INPUT TYPE=\"Submit\" Name=\"submit\" Value=\"START\">
</FORM>";
This all works as expected, however I realized that if you right click on the page and view source, the actual value of username and password are shown. Is there anyway to hide these, or encrypt them so that they cannot be seen?