Hi..
login.php page 'post' username and password values to welcome.php to authenticate user there.
welcome.php ..
$username = $POST['username'];
$password = $POST['password'];
The problem is when I view source ( IE->View->Source or right click on the page->view source), these fields are visible. How can I post the values in secure way ??
regards,
Mitchell