Re: Adding to multiplied values

From: Reed Loefgren <rloef(at)interfold(dot)com>
To: Volkan YAZICI <yazicivo(at)ttnet(dot)net(dot)tr>
Cc: PHP on postgresql list server <pgsql-php(at)postgresql(dot)org>
Subject: Re: Adding to multiplied values
Date: 2006-05-19 13:13:10
Message-ID: 20060519065138.K92929@auden.jmla.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

On Fri, 19 May 2006, Volkan YAZICI wrote:

> On May 18 10:45, Reed Loefgren wrote:
>> I've been hacking away on a little time billing database and I've been
>> having difficulty adding to a calculated amount.
>
> Can we see the exact PHP code stands for the execution of related query?
>
>
> Regards.
>
>

Sure, and thanks. This query works, but I fail at tying in $totalExpenses
to create a $grandTotal. (pine is gonna butcher this...);

$query = "INSERT INTO invoices2 (idate, iperiod, inum, ijobcode,
iaccount, icomp, itime, isub, create_time) VALUES('" . $invoiceDate . "',
'" . $billingPeriod . "', '" . $invoiceNumber . "', '" . $jobCode . "', '"
. $accountNumber . "', '" . $billingRate . "', '" . $totalHours . "', '" .
$billingRate * $totalHours . "', 'now()')";

r

In response to

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Randy Moller 2006-05-19 13:39:42 Re: Adding to multiplied values
Previous Message Volkan YAZICI 2006-05-19 07:09:42 Re: Adding to multiplied values