Jump to content

Fatal error: Call to a member function on a non-object...gotta hate it!


Todd88

Recommended Posts

Fatal error: Call to a member function on a non-object in /mysite/proof.php on line 14

 

 

I am using a mysql database to get the values for proof on my payment site.  I guess I have something wrong in the code and it would be great if someone could just point it out to me.  Here is the file:

 

<?
$includes[title]="Proof Of Payments";
?>

<table class="tableStyle" style="width:100%">
<tr>
	<th>Id</th>
	<th>Username</th>
	<th>Method</th>
	<th>Amount</th>
	<th>Date</th>
</tr>
<?
$sql=$Db1->query("SELECT * FROM payment_history ORDER BY dsub DESC");
while($row=$Db1->fetch_array($sql)) {
echo "<tr>
	<td>".$row['id']."</td>
	<td>".$row['username']."</td>
	<td>".$row['accounttype']."</td>
	<td>".$row['amount']."</td>
	<td>".date("M.D.Y",mktime(0,0,$row['dsub'],1,1,1970))."</td>
</tr>";
}
?>

</table>

 

Any help is appreciated!  Thanks!

 

 

I used a similiar method for a different section of the site but it doesn't work for this one.  Here is the code for the other section:

 

$sql=$Db1->query("SELECT clicked_today, SUM(clicked_today) FROM user GROUP BY permission");

        $clickstoday=$Db1->fetch_array($sql);

 

It works this way :(

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.