Hi
i got the array values from the html page using foreach. In this i can get multiple array values to print in the table.
the values are
Date Forward Process
12/9/8008 5 3
15/09/2008 7 4
For Date I am using this
how can i print this values for the above table format. i am tried to print but i got the three values are one by one.
anyone help to solve this issue
Thanks and regards,
Geethu.
i got the array values from the html page using foreach. In this i can get multiple array values to print in the table.
the values are
Date Forward Process
12/9/8008 5 3
15/09/2008 7 4
For Date I am using this
Code:
foreach ($_POST['CreatedDate'] as $key => $value) {
echo $value;
}
the same as i use forward and Process
foreach ($_POST['forward'] as $key => $value) {
echo $value;
}
foreach ($_POST['Process'] as $key => $value) {
echo $value;
}
anyone help to solve this issue
Thanks and regards,
Geethu.
Comment