Jump to content

unable to return array


narjis

Recommended Posts

I am opening a connection with mysqli and passing the returning object to another function which returns the array of the object passed but it is not giving correct result.

Here is the code:

function convert_to_array($arrObj){
$res_array = array();
for ($count=0; $row = $arrObj->fetch_assoc(); $count++){
	$res_array[$count] = $row;
	}	
	return $res_array;
}
function getUser($email,$pass)
{
$conn = db_connect();
$query ="select * from users where Password='".$pass."' and Email='".$email."'";
$result = @$conn->query($query);
$num = @$result->num_rows;
if($num==0)
echo "NoT OK";
else{
echo "OK";
$result = convert_to_array($result); 
echo ("$num");
return $result;
}function getUser($email,$pass)
{
$conn = db_connect();
$query ="select * from users where Password='".$pass."' and Email='".$email."'";
$result = @$conn->query($query);
$num = @$result->num_rows;
if($num==0)
echo "NoT OK";
else{
echo "OK";
$result = convert_to_array($result); 
echo ("$num");
return $result;
}

Link to comment
Share on other sites

take the @ out of your calls to functions as was suggested.

 

in the code that you posted...is there a copy/paste problem?.. you have the function getUser() twice

 

...which returns the array of the object passed but it is not giving correct result...

why?... details...

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.