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