We are fetching values of column "due_date" & displaying in site.
Its working fine with help of below code.
$i = 0;
foreach($order as $orderData)
{
$k = 0;
while ($k < count($orderitemsarray)) {
if ($orderitemsarray[$k] != '0') {
if($accountType == "admin") {
$due_date='';
while($datas = $stmt1->fetch()) {
$due_date=$datas['due_date'];
$oDate1 = new DateTime($datas['due_date']);
$sDate1 = $oDate1->format("M d, Y");
}
$responce[] = array( $due_date );
}
return json_encode($responce);
script
var colsOption = [
{id: 'due_date' , header: " Due Date" , width :"140"},
];
I want to display date in this format :
so i tried below code
$responce[] = array(
$sDate1
);
Now its displaying Date for other rows also, but for those other rows there is no values [ Due date ] in Database.
In your code you your are adding values in $response[] using loop. What happens is that value of $sDate1 is not initialized to null. So when it is set for first time it does not change until next due_date value comes so it keeps on repeating last $sDate1 value to solve this , Go to line 152 in this file http://pastebin.com/PnPnX9Wiand bellow it initialize $sDate1. Make changes in this code.
Add $sDate1='';. It will look like this.
Now change this code.
with this code.