0

データベースのデータを表示するテーブルがあり、合計フィールドに追加したいのですが、金額と価格を掛けて新しい合計フィールドに表示するにはどうすればよいですか?

ここに私のコードがあります

<?php
// Connection data (server_address, database, name, poassword)
$hostdb = 'localhost';
$namedb = 'xxxx';
$userdb = 'xxxx';
$passdb = '';

try {
// Connect and create the PDO object
$conn = new PDO("mysql:host=$hostdb; dbname=$namedb", $userdb, $passdb);
$conn->exec("SET CHARACTER SET utf8");      // Sets encoding UTF-8

// Define and perform the SQL query
$sql = "SELECT `id`, `wine`, `amount`, `price`, `upc` FROM `wine`";
$result = $conn->query($sql);

// If the SQL query is succesfully performed ($result not false)
if($result !== false) {
// Create the beginning of HTML table, and the first row with colums title
$html_table = '<table border="1" cellspacing="0" cellpadding="2"><tr><th>ID</th>      <th>Wine</th><th>Amount</th><th>Price</th><th>upc</th></tr>';

// Parse the result set, and adds each row and colums in HTML table
foreach($result as $row) {
  $html_table .= '<tr><td align="center">' .$row['id']. '</td><td align="center">' .$row['wine']. '</td><td align="center">' .$row['amount']. '</td><td align="center">' .$row['price']. '</td><td align="center">' .$row['upc']. '</td></tr>';
 }
}

 $conn = null;        // Disconnect

 $html_table .= '</table>';           // ends the HTML table

 echo $html_table;        // display the HTML table
}
catch(PDOException $e) {
echo $e->getMessage();
}
?>
<a href="/admin/">Admin</a> 
4

4 に答える 4

0
$total_price = $row['amount'] * $row['price'];

次の調整も必要です。

 $html_table = '<table border="1" cellspacing="0" cellpadding="2"><tr><th>ID</th>      <th>Wine</th><th>Amount</th><th>Price</th><th>Total</th><th>upc</th></tr>';

そしてループ内:

 $html_table .= '<tr><td align="center">' .$row['id']. '</td><td align="center">' .$row['wine']. '</td><td align="center">' .$row['amount']. '</td><td align="center">' .$row['price']. '</td><td align="center">' .$row['upc']. '</td><td align="center">' . $total_price . '</td></tr>'; }
于 2013-03-18T02:52:34.577 に答える
0

このような?

'<td>' . $row['amount'] * $row['price'] . '</td>'
于 2013-03-18T02:52:20.393 に答える
0

ディスプレイに XX * xx のみが表示される場合があり、その場合は次のように値をラップします。

$total = ($row['amount']) * ($row['price'])
于 2013-03-18T03:24:52.840 に答える