2017-07-31 95 views
-1

希望我能更好地解釋在這裏比我的標題:(如何,MySQL的形式,結果添加貨幣符號

基本上我從下面的網站 https://sourcecodesite.com/use-bootstrap-tables-display-data-mysql.html

我已經得到了工作MySQL的自舉表將其設置爲顯示和獲取我從我的數據庫所需要的結果,但是我試圖把英鎊符號「£」的銷售表顯示其結果之前(如下高亮顯示)

enter image description here

我試圖編輯像下面的代碼,但都沒有成功,在這裏希望有人能幫助我:)

{ 
    field: 'sales', 
    title: £'Job Price', 
    sortable: true, 
} 

生成的代碼作爲跟隨

<?php 
 
\t require 'db.php'; 
 
    \t \t 
 
    \t \t $sqltran = mysqli_query($con, "SELECT * FROM results_tbl_1 WHERE ENG_ID='".$_SESSION['username']."'ORDER BY RECORD_ID DESC") or die(mysqli_error($con)); 
 
\t \t $arrVal = array(); 
 
    \t \t 
 
\t \t $i=1; 
 
    \t \t while ($rowList = mysqli_fetch_array($sqltran)) { 
 
    \t \t \t \t \t \t \t \t 
 
\t \t \t \t \t \t $name = array(
 
\t \t \t \t \t \t \t \t 'num' => $i, 
 
\t \t \t \t \t \t \t \t 'rec'=> $rowList['RECORD_ID'], 
 
\t \t \t \t \t \t \t \t 'call'=> $rowList['CALL_ID'], 
 
    \t \t \t \t \t \t \t \t 'eng'=> $rowList['ENG_ID'], 
 
\t \t \t \t \t \t \t \t 'workcode'=> $rowList['Work_Code'], 
 
\t \t \t \t \t \t \t \t 'sales'=> $rowList['Sales'], 
 
\t \t \t \t \t \t \t \t 'paid'=> $rowList['How_Paid'], 
 
\t \t \t \t \t \t \t \t 'invoice'=> $rowList['Invoice Number'], 
 
\t \t \t \t \t \t \t \t 'date'=> $rowList['Date Completed'] 
 
\t \t \t \t \t \t \t \t 
 
\t \t \t 
 
\t \t \t \t \t \t \t \t 
 
    \t \t \t \t \t \t \t); \t \t 
 

 

 
\t \t \t \t \t \t \t array_push($arrVal, $name); \t 
 
\t \t \t $i++; \t \t \t 
 
\t \t } 
 
\t \t \t echo json_encode($arrVal); \t \t 
 
    
 

 
\t \t mysqli_close($con); 
 
?>

+4

你可能只需要使用字符串連接你的數據庫輸出前添加井號(除非你需要多幣種支持)。你能分享你的代碼嗎? – Andy

+0

嘗試把磅符號放在引用的字符串中,也許? –

+0

@Andy添加代碼(我相信)到主帖 – Jamie

回答

0

看看這是否有道理。我們將英鎊符號放入名爲「價格」的(假設)字段中。

$name = array(
 
    'num' => $i, 
 
    'rec'=> $rowList['RECORD_ID'], 
 
    'call'=> $rowList['CALL_ID'], 
 
    'eng'=> $rowList['ENG_ID'], 
 
    'workcode'=> $rowList['Work_Code'], 
 
    
 
    'price' => '£' . $rowList['Price'], // MAYBE SOMETHING LIKE THIS 
 
    
 
    'sales'=> $rowList['Sales'], 
 
    'paid'=> $rowList['How_Paid'], 
 
    'invoice'=> $rowList['Invoice Number'], 
 
    'date'=> $rowList['Date Completed'] 
 
); 
 

 
array_push($arrVal, $name);

+0

Thankyou :)完美的作品! – Jamie

+0

很高興幫助。你現在可以接受答案,對吧? ;-) https://stackoverflow.com/help/someone-answers –