Skip to content
Advertisement

getting error on CodeIgniter Object of class stdClass could not be converted to string in CodeIgniter

I am getting the following error during fetching of database value:

A PHP Error was encountered
Severity: 4096

Message: Object of class stdClass could not be converted to string

Filename: controllers/User.php

Line Number: 184

Backtrace:

File: >Localdrive:xampphtdocsMyRootFolderapplicationcontrollersUser.php Line: 184 Function: _error_handler

File: Localdrive:xampphtdocsMyRootFolderapplicationcontrollersUser.php Line: 151 Function: run

File: Localdrive:xampphtdocsMyRootFolderindex.php Line: 315 Function: require_once

My Controller:

JavaScript

My Model:

JavaScript

My View:

JavaScript

Advertisement

Answer

You are requesting the data as an object in your model but trying to us it as an array. Either change this line: if(password_verify($oldpass, $user->password) == true){ to use the fetch as object or change get_user func to return $query->row_array(); to use it as an array. P.s.: for debug use var_dump both for array and object instead of print

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement