cluce Posted May 14, 2007 Share Posted May 14, 2007 can someone tell me how to get rid of this error....... Catchable fatal error: Object of class mysqli_result could not be converted to string in C:\wamp\www\fail.php on line 21 here is my code......... <?php $mysqli = mysqli_connect("localhost", "root", "", "test"); $sql = ("SELECT failed_logins FROM auth_users WHERE username = 'me'"); $attempts = mysqli_query($mysqli, $sql); //disables user if ($attempts >= 3){ echo ("login disabled"); } else { echo ("its good"); echo ("$attempts"); } ?> when I ran this I got his... its good Catchable fatal error: Object of class mysqli_result could not be converted to string in C:\wamp\www\fail.php on line 21 Link to comment https://forums.phpfreaks.com/topic/51369-solved-catchable-fatal-error-object-of-class-mysqli_result-could-not-be-converted-to-s/ Share on other sites More sharing options...
chigley Posted May 14, 2007 Share Posted May 14, 2007 <?php $mysqli = mysqli_connect("localhost", "root", "", "test"); $sql = ("SELECT failed_logins FROM auth_users WHERE username = 'me'"); $result = mysqli_query($mysqli, $sql); $resultarr = mysqli_fetch_assoc($result); $attempts = $resultarr["failed_logins"]; //disables user if ($attempts >= 3){ echo ("login disabled"); } else { echo ("its good"); echo ("$attempts"); } ?> Link to comment https://forums.phpfreaks.com/topic/51369-solved-catchable-fatal-error-object-of-class-mysqli_result-could-not-be-converted-to-s/#findComment-252961 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.