I'm reading PHP&MYsql for dummies atm.. and (if I can get some help I take the idiot hat!) there's something which seam very 'weird' to me.
It seams that some data like passwords and usernames are 'hidden' in PHP files.
Now, I know if you use internet explorer and you load the file for example:
http://www.servername.com/test.php
test.php
<?php
session_start();
@$_SESSION['password']="Enter$$2541";
?>
and go in View/ Source, the PHP code doesn't show.. but I am wondering if this system is sufficient to stop hackers from reading that information?
(please say yes!! well.. only if it's sufficient)