i have a simple login page(index.php) with username and password . I have created a file called db_connect.php which will have all the database related functions .
class Database{
private $connection;
private $db;
function __construct()
{
$this->connection = mysql_connect('localhost','root','') or die("cannot connect");
$this->db = mysql_select_db('logistics',$this->connection);
}
function verify_login($uid,$password)
{
$verify_login = "select user_id from log_users where user_login = '$uid' and user_password = '$password'";
$status = mysql_query($verify_login,$this->connection);
while($result = mysql_fetch_assoc($status)){
if($result['user_id'] == '1')
{
return true;
}
else{
return false;
}
}
}
Now i have created an object of the class database which is used to call the function verify_login($username,$password) . The problem here is the output is a blank page no matter what the status of the login is . It returns a resource id if i print the variable $status . But nothing is returned .