Hi guys, let talk about from Website PHP and Mssql records.
Now,
From my PHP
I put:
$account = mssql_query("SELECT * FROM Login WHERE UserID='$userid'");
do they can get the password from 'Password ColumnName'?
because there is an hacker in my server and he got my Password, maybe he inject something, he knows my password, or maybe he keep finding my password..
so I changed to:
$account = mssql_query("SELECT UserID,AID FROM Login WHERE UserID='$userid'");
- - - - - - - - -
My question is, do they can get my password from
$account = mssql_query("SELECT * FROM Login WHERE UserID='$userid'");


Reply With Quote


