Welcome Guest, Not a member yet? Register   Sign In
View providing no results, but table has recent entries
#33

[eluser]Chad Fulton[/eluser]
Okay, this has been a long process just to find out there was no MySQL error!

It turns out, I should have just taken a look at the code. Although, I have to say that I find it a bit suspicious that this supposedly used to work?

In your controller, you have:
Code:
$data2 = array('payouts'=>$this->mdlUser->GetPaymentRequests());

and in your model you have

Code:
return $query->result_array();

and in your view you have
Code:
<?=$payouts->num_rows?>
// ...
var_dump ($payouts->result_array);
// ...
if($payouts->num_rows != 0):
// ...
foreach($payouts->result as $row):
// ...

Notice the problem here?
You're returning an array of results from your model, but in the view you're acting like you've got a query object (although, not really even that, since they ought to be function calls (i.e. $payouts->result_array())

Does this make sense? Here's how to fix it...

In your model:
Code:
return $query;

And in your view, fix all of the things that ought to be function calls (num_rows(), result(), result_array(), etc)

That should do it!


Messages In This Thread
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 11:37 AM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 11:59 AM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 12:03 PM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 12:39 PM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 12:56 PM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 01:53 PM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 02:03 PM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 02:05 PM
View providing no results, but table has recent entries - by El Forum - 10-02-2009, 02:21 PM
View providing no results, but table has recent entries - by El Forum - 10-06-2009, 02:01 PM
View providing no results, but table has recent entries - by El Forum - 10-06-2009, 02:02 PM
View providing no results, but table has recent entries - by El Forum - 10-06-2009, 02:44 PM
View providing no results, but table has recent entries - by El Forum - 10-06-2009, 11:21 PM
View providing no results, but table has recent entries - by El Forum - 10-07-2009, 12:52 PM
View providing no results, but table has recent entries - by El Forum - 10-07-2009, 01:34 PM
View providing no results, but table has recent entries - by El Forum - 10-07-2009, 02:55 PM
View providing no results, but table has recent entries - by El Forum - 10-07-2009, 09:54 PM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 11:09 AM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 11:39 AM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 12:19 PM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 12:29 PM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 12:42 PM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 12:44 PM
View providing no results, but table has recent entries - by El Forum - 10-08-2009, 12:48 PM
View providing no results, but table has recent entries - by El Forum - 10-09-2009, 12:06 AM
View providing no results, but table has recent entries - by El Forum - 10-09-2009, 03:47 AM
View providing no results, but table has recent entries - by El Forum - 10-09-2009, 04:14 AM
View providing no results, but table has recent entries - by El Forum - 10-09-2009, 11:36 AM
View providing no results, but table has recent entries - by El Forum - 10-19-2009, 02:15 PM
View providing no results, but table has recent entries - by El Forum - 10-20-2009, 02:35 PM
View providing no results, but table has recent entries - by El Forum - 10-20-2009, 02:49 PM
View providing no results, but table has recent entries - by El Forum - 10-20-2009, 11:44 PM
View providing no results, but table has recent entries - by El Forum - 10-21-2009, 01:16 AM
View providing no results, but table has recent entries - by El Forum - 10-21-2009, 09:41 AM
View providing no results, but table has recent entries - by El Forum - 10-22-2009, 02:59 PM
View providing no results, but table has recent entries - by El Forum - 10-22-2009, 03:09 PM
View providing no results, but table has recent entries - by El Forum - 10-22-2009, 10:55 PM
View providing no results, but table has recent entries - by El Forum - 10-23-2009, 05:44 AM
View providing no results, but table has recent entries - by El Forum - 10-23-2009, 09:57 AM
View providing no results, but table has recent entries - by El Forum - 10-23-2009, 10:13 AM
View providing no results, but table has recent entries - by El Forum - 10-23-2009, 01:50 PM
View providing no results, but table has recent entries - by El Forum - 10-23-2009, 02:04 PM
View providing no results, but table has recent entries - by El Forum - 10-28-2009, 01:29 PM



Theme © iAndrew 2016 - Forum software by © MyBB