View Single Post
Old 11-27-2002, 08:48 PM   PM User | #1
sir pannels
Regular Coder

 
Join Date: Jun 2002
Posts: 905
Thanks: 23
Thanked 5 Times in 5 Posts
sir pannels is an unknown quantity at this point
php/mysql script that is meant up update..

...some info in a table doesnt work..
hmm you see the $id is from the url the rest is either in the script or the db.... its meant to get the current balance... and work out how much it should go up and then updat eit to the new baance.. it errors.. any one see why?
Code:
<?php
$dbc = mysql_connect('localhost', '', '') or die("Couldn't connect to database"); 
 mysql_select_db('GAME') or die("Couldn't select database"); 

$query ="SELECT * FROM founds WHERE id=$id";
$query ="UPDATE founds SET balance = $income WHERE id =$id";

$result = mysql_query($query) or die("There is an error with you account, please contact support and inform them of this"); 
 while ($r = mysql_fetch_array($result)) { 
 extract($r);

        $fincome = $extractors * 2000 ;
        $sincome = $extractors * $advanced ;
        $income = $fincome + $sincome ;

echo("Account Balance Updated");

?>
thanks a lot
sir pannels is offline   Reply With Quote