Ok so I have a form where the username and password inputs are needed to be hidden
PHP Code:
[code]<?php
if($_POST[‘submit’])
{
$username = “Username”;
$password = “password”;
$link = “index.php”;
<-- More code not relevant to Q -->
?>
Blah blah blah
<?php } else { ?> <?php } ?>[/code]That is what I currently have but obviously if someone was to view source they would be able to see the info which is a security risk so my Q is
How can I hide the values from source?
Note:PHP newbie so please post code example
As always thank you in advance