Welcome Guest, Not a member yet? Register   Sign In
How can i use variable from diffrent foreach to get value by adding 2 variable itself
#1

Hello guys, now i have little problem that spend my time not to hard but don't know how to solved this, here is my view
Code:
<?php
foreach ($sum->result() as $row) {  ?>

$untung=$row->jumlah_item;    

<?php  }  ?>



<?php
foreach ($sumongkir->result() as $row) {  ?>

$ongkir=($row->total);

<?php  }  ?>


$total=$untung+$ongkir; //it doesn't working, what do i wrong here? please guide me to debug it, thanks
Reply
#2

Declare your variables outside of the foreach loop.

PHP Code:
$untung 0;
$ongkir 0;

foreach (
$sum->result() as $row) {
  
$untung=$row->jumlah_item;    
}

foreach (
$sumongkir->result() as $row) {
  
$ongkir=($row->total);
}

$total=$untung+$ongkir
Reply
#3

(This post was last modified: 09-28-2015, 05:51 PM by pdthinh.)

(09-28-2015, 04:44 PM)freddy Wrote: Hello guys, now i have little problem that spend my time not to hard but don't know how to solved this, here is my view






Code:
<?php
foreach ($sum->result() as $row) {  ?>

$untung=$row->jumlah_item;

<?php  }  ?>



<?php
foreach ($sumongkir->result() as $row) {  ?>

$ongkir=($row->total);

<?php  }  ?>


$total=$untung+$ongkir; //it doesn't working, what do i wrong here? please guide me to debug it, thanks

Assume two query result in the same size

PHP Code:
// assume $sum->num_rows() == $sumongkir->num_rows()
for ($i 0$i $sum->num_rows(); ++$i) {
    $untung=$sum->row($i)->jumlah_item;
    $ongkir=$sumongkir->row($i)->total;
    $total+=$untung+$ongkir;    


Not sure I understand your question correctly but I think $total may be an array $total[$i]
Reply
#4

(09-28-2015, 05:18 PM)JayAdra Wrote: Declare your variables outside of the foreach loop.


PHP Code:
$untung 0;
$ongkir 0;

foreach (
$sum->result() as $row) {
 
 $untung=$row->jumlah_item   
}

foreach (
$sumongkir->result() as $row) {
 
 $ongkir=($row->total);
}

$total=$untung+$ongkir
Smile Thanks jay, i guess also but need someone guide me to debug it ! big thanks and +1 for you, May God bless you
Reply
#5

(09-28-2015, 05:45 PM)pdthinh Wrote:
(09-28-2015, 04:44 PM)freddy Wrote: Hello guys, now i have little problem that spend my time not to hard but don't know how to solved this, here is my view







Code:
<?php
foreach ($sum->result() as $row) {  ?>

$untung=$row->jumlah_item;

<?php  }  ?>



<?php
foreach ($sumongkir->result() as $row) {  ?>

$ongkir=($row->total);

<?php  }  ?>


$total=$untung+$ongkir; //it doesn't working, what do i wrong here? please guide me to debug it, thanks

Assume two query result in the same size


PHP Code:
// assume $sum->num_rows() == $sumongkir->num_rows()
for ($i 0$i $sum->num_rows(); ++$i) {
    $untung=$sum->row($i)->jumlah_item;
    $ongkir=$sumongkir->row($i)->total;
    $total+=$untung+$ongkir;    


Not sure I understand your question correctly but I think $total may be an array $total[$i]

Thanks also pdt it give same result too, May God Bless you, +1 for you Big Grin 
Reply
#6

(09-28-2015, 06:27 PM)freddy Wrote: Thanks also pdt it give same result too, May God Bless you, +1 for you Big Grin 

Maybe I misunderstand something. If you use foreach your way, you only get the last row of the result set. So it something similar to following without the foreach:

PHP Code:
$untung $sum->last_row()->jumlah_item;
$ongkir $sumongkir->last_row()->total;
$total $untung $ongkir
Reply




Theme © iAndrew 2016 - Forum software by © MyBB