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
https://forums.phpfreaks.com/topic/238625-unable-to-return-array/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.