Fatal error: Uncaught Error: Call to a member function fetch_array() on bool

Hey all!!

Got this error for this line of code:

foreach($user->fetch_array() as $k =>$v){
	$meta[$k] = $v;
}

How do I fix this?
Thank ya :heart:

The $user query was not successful, so $user is false rather than a result. You need to look at the dB errors to see what happened.

1 Like

@skawid

Thank ya again for the help…I greatly appreciate it :heart:

Sponsor our Newsletter | Privacy Policy | Terms of Service