2012-12-17 55 views
-2

我這裏有一個代碼在回聲中添加變量?

$result = $dbLink->query($sql); 

if($result) { 

while($row = $result->fetch_assoc()) { 


      echo "Assignment Number: {$row['AssNum']}<br/>" ; 
      echo "Tutor(90 %) marks: {$row['tutorRecord']}<br/>" ; 
      echo "Second(10 %) marks: {$row['secondRecord']}<br/>"; 

我想從這些變量的總和,我從表中的行兩個變量,每行中我要添加這些變量。各變量遵循

{$row['tutorRecord']} 
{$row['secondRecord']} 

我想total = {$row['tutorRecord']} + {$row['secondRecord']}

這裏面isset if條件,我不能使用添加功能回聲內可我?

非常感謝

+0

首先添加它們,然後'echo'結果。或者在加法表達式中連接。 'echo「total =」。 $ row ['tutorRecord'] + $ row ['secondRecord'];' –

回答

1

做加法一樣,

 $total = $row['tutorRecord'] + $row['secondRecord'] ; //this if u want have total variable 

,或者如果你想呼應這樣的

echo "TOTAL = ".$row['tutorRecord'] + $row['secondRecord'] ; // this total just count them 

沒有{}

0

使用串聯:

echo "Total: ".$row['tutorRecord'] + $row['secondRecord']."<br/>"; 
-1

沒有,但你可以做到這一點,而不是:
$asd = "Assignment number" . function() ."br>";
echo $asd

只是做()函數返回正確的值,然後你就可以演示和計算部分devide代碼。