检查$ row的值并修改

时间:2014-02-10 12:20:39

标签: php

我使用flexigrid显示数据,需要帮助检查行的值并进行更改。数据通过json返回到flexigrid并且运行良好且没有ant错误。但是,我要做的是检查一行; $ row ['status']表示值= 1,如果该行是该值,则将其更改为value =“In”。

我尝试了各种使用if语句编写代码的方法,但它没有错误,只是不显示网格中的数据。编码这一行的正确方法是什么?感谢

$results = mysql_query($sql);
while ($row = mysql_fetch_assoc($results)) {
$data['rows'][] = array(
'id' => $row['Id'],
'cell' => array($row['Id'], $row['rack'].$row['column'].'-'.$row['row'].'-'.$row['bay'], $row['customer'], $dropdown, $service, $row['department'], if ($row['status']==1){$row['status']="In"}, $row['custref'], $row['size'], $row['authorisation'], date('d/m/Y H:m:s',strtotime($row['intake_date'])), date('d/m/Y',strtotime($row['destroy_date']))));
}
echo $json->encode($data);

0 个答案:

没有答案