如何从价格*数量中获得结果?

时间:2016-04-17 09:41:26

标签: php codeigniter

我想从数量*价格中自动计算 所以,我是新手。

检查截图: enter image description here

<?php

$result_order= $this->db->where('userID',$this->session->userdata('IDname'))->get('order')->result();
//print_r($result_order);


foreach ($result_order as $row => $item) {
echo'<tr>';
echo'<td>'.$item->foodID.'</td>';
echo'<td>'.$item->foodname.'</td>';
echo'<td>'.$item->cost.'</td>';
    /*echo'<td width="55"><input class="qty_input" type="number" name="item_qty" min="1" max="10"</td>'; */
echo'<td width="55"><input type="number" name="items_qty[<?php echo $row; ?>]" id="item<?php echo $row; ?>_qty"  min="1" max="10"></td>'; 
echo'<td> '.$item->cost.'*$item_qty  </td>';
echo'<td>&nbsp;</td>';
echo'</tr>  ';
}
?>

1 个答案:

答案 0 :(得分:1)

更改后尝试

echo'<td> '.$item->cost.'*$item_qty  </td>';

echo'<td> '.$item->cost*$item_qty.'  </td>';

并确保两者都是整数