lineprice wordt niet goed weergegeven
Gert Mallegrom
26/09/2006 21:22:00Het mailtje wat gebaseerd is op de volgende code geeft als de prijs bijv 74,95 is wel de goede prijs door, maar maakt van de lineprice 74,00
Weet iemand hoe dat kan?
Groet
Gert
Weet iemand hoe dat kan?
Groet
Gert
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
while ($row = mysql_fetch_assoc($query)) {
$i++;
$id = $row['id'];
$merknaam = $row['merknaam'];
$prijs = $row['prijs'];
$prijs = number_format($prijs, 2, ',', '');
$schoennaam = $row['schoennaam'];
$lineprice = $product[1] * $prijs;
$lineprice = number_format($lineprice, 2, ',', '');
$total = $total + $lineprice;
$total = number_format($total, 2, ',', '');
$btw = number_format(($total / 119) * 19, 2, ',', '');
$mailer->Body .="
<tr><td>".$id."</td>
<td>".$merknaam."</td>
<td>".$schoennaam."</td>
<td>".$product[1]."</td>
<td>".$product[2]."</td>
<td>".$prijs."</td>
<td align=right>".$lineprice."</td>
</tr>
";
}
?>
while ($row = mysql_fetch_assoc($query)) {
$i++;
$id = $row['id'];
$merknaam = $row['merknaam'];
$prijs = $row['prijs'];
$prijs = number_format($prijs, 2, ',', '');
$schoennaam = $row['schoennaam'];
$lineprice = $product[1] * $prijs;
$lineprice = number_format($lineprice, 2, ',', '');
$total = $total + $lineprice;
$total = number_format($total, 2, ',', '');
$btw = number_format(($total / 119) * 19, 2, ',', '');
$mailer->Body .="
<tr><td>".$id."</td>
<td>".$merknaam."</td>
<td>".$schoennaam."</td>
<td>".$product[1]."</td>
<td>".$product[2]."</td>
<td>".$prijs."</td>
<td align=right>".$lineprice."</td>
</tr>
";
}
?>