Welcome Guest, Not a member yet? Register   Sign In
Fatal error
#1

[eluser]ede196620[/eluser]
i am geting this error

Code:
Fatal error: Cannot use object of type stdClass as array in C:\wamp\www\Surva\application\views\displayEdit.php on line 20

on this line:

Code:
<td>&lt;input type="text" name="QID" disabled="disable" class="text" value="&lt;?php echo (isset($query['QID']))?$query['QID']:''; ?&gt;"/&gt;&lt;/td>

i cant figure why can anyone help ?
#2

[eluser]PhilTem[/eluser]
It's because you're accessing an object as if it were an array (exactly what the error code tells you). Your code snippet shows the "bad code" at around the "$query[' "-part.

Try changing the access scope from array to object. Then it should work
#3

[eluser]ede196620[/eluser]
Can u show me how it should look i am weary new to codeigniter still have a lot to learn

is it something like this
Code:
$query->

EDIT

That was the answer its fixed




Theme © iAndrew 2016 - Forum software by © MyBB