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!

 

 

Link to comment
Share on other sites

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 :(

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.