I'm self taught in PHP, but i'm afraid my syntax is off for the following MySQL query.
$getPassword="SELECT password FROM $tbl_name WHERE username=$myusername";
$password=mysql_query($getPassword);
Is the above registering $myusername
as a string or as a variable? I'm using PHP 5.4.
Thanks in advance for any help!