RE: [PHP-DB] Update data problem

2004-06-23 Thread Justin.Baiocchi
sold"]; print ""; print $row["income_in"]; print ""; print $row["income_out"]; print "\n"; } print "\n"; ?> Please enter closing details; Closed Date: Option Close

Re: [PHP-DB] Update data problem

2004-06-23 Thread Sam Chill
Justin, Is the code you posted all of the code or just a small snippet? You don't appear to be setting $C or $G. Could you post a larger code dump please? -Sam -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-DB] Update data problem

2004-06-23 Thread Justin.Baiocchi
: Thursday, 24 June 2004 2:55 PM To: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Update data problem $E= "$C*$G"; Should be: $E = $C * $G; Never use quotation marks when doing math. Quotation marks are used for strings. Hope that helps. -- PHP Database Mailing List (http://www.php.net/) To u

Re: [PHP-DB] Update data problem

2004-06-23 Thread Sam Chill
$E= "$C*$G"; Should be: $E = $C * $G; Never use quotation marks when doing math. Quotation marks are used for strings. Hope that helps. -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php