I want make HTML table use PHP Array.
This is PHP side code
function get_location_list()
{
global $connect;
$query = "select location
, SUBSTRING_INDEX(SUBSTRING_INDEX(location,'-',1),'-',-1) loc_a
, SUBSTRING_INDEX(SUBSTRING_INDEX(location,'-',2),'-',-1) loc_b
, SUBSTRING_INDEX(SUBSTRING_INDEX(location,'-',3),'-',-1) loc_c
from stock_location
where location> ''
order by loc_a, loc_b * 1, loc_c * 1 limit 100";
$result = mysql_query($query, $connect);
$arr_result = array();
while( $data = mysql_fetch_array( $result ) )
{
$arr_result[$data[loc_a]][] = $data[location];
}
echo json_encode( $arr_result );
}
This code send Array to HTML side. Array value is same like this
"A1":["A1-1","A1-1-1","A1-1-2","A1-1-3","A1-1-4","A1-2-1","A1-2","A1-2-
2","A1-2-3","A1-2-4","A1-3-1","A1-3-2","A1-3","A1-3-3","A1-3-4","A1-4-
1","A1-4-2","A1-4-3","A1-4-4","A1-4","A1-5-1","A1-5-2","A1-5-3","A1-5-
4","A1-5"],
"A2":["A2-1","A2-1-1","A2-1-2","A2-1-3","A2-1-4","A2-2-1","A2-
2","A2-2-2","A2-2-3","A2-2-4","A2-3-1","A2-3-2","A2-3-3","A2-3","A2-3-
4","A2-4-1","A2-4-2","A2-4-3","A2-4","A2-4-4","A2-5-1","A2-5-2","A2-5-
3","A2-5-4","A2-5"],
"A3":["A3-1","A3-1-1","A3-1-2","A3-1-3","A3-1-4","A3-2-
1","A3-2","A3-2-2","A3-2-3","A3-2-4","A3-3-1","A3-3-2","A3-3-3","A3-3","A3-
3-4","A3-4-1","A3-4-2","A3-4-3","A3-4","A3-4-4","A3-5-1","A3-5-2","A3-5-
3","A3-5-4","A3-5"],
"A4":["A4-1","A4-1-1","A4-1-2","A4-1-3","A4-1-4","A4-2-
1","A4-2","A4-2-2","A4-2-3","A4-2-4","A4-3-1","A4-3-2","A4-3-3","A4-3","A4-
3-4","A4-4-1","A4-4-2","A4-4-3","A4-4","A4-4-4","A4-5-1","A4-5-2","A4-5-
3","A4-5-4","A4-5"]
this is HTML side.different file,not same file with PHP
<table class="table table-bordered">
<thead>
<tr>
<th class="header_center" width=100>location</th>
<th class="header_center" width=100>product</th>
<th class="header_center" width=100>qty</th>
</tr>
</thead>
<tbody id="table_contents">
</tbody>
</table>
and this is javascript. javascript code in same file with HTML
$.post("function.htm", {
template : "IU00",
action : "get_location_list",
},
function( response ){
$("#table_contents").empty();
obj = eval( "(" + response + ")" )
for( var i=0; i < obj.length; i++ )
{
str = "<tr>";
str += "<td>" + obj[i].location + "</td>";
str += "<td>" + "</td>";
str += "<td>" + "</td>";
str += "</tr>";
$("#table_contents").append(str);
}
});
I want show HTML table like this.
__________ __________ __________ __________
|location 1|location 2|location 3|location 4|
| A1-1-1 | A2-1-1 | A3-1-1 | A4-1-1 |
| A1-1-2 | A2-1-2 | A3-1-2 | A4-1-2 |
| A1-1-3 | A2-1-3 | A3-1-3 | A4-1-3 |
| A1-1-4 | A2-1-4 | A3-1-4 | A4-1-4 |
| A1-2-1 | A2-2-1 | A3-2-1 | A4-2-1 |
| A1-2-2 | A2-2-2 | A3-2-2 | A4-2-2 |
. . . .
. . . .
| A1-5-5 | A2-5-5 | A3-5-5 | A4-5-5 |
---------------------------------------------
I am unsure whether the issue is with the Javascript or HTML code. What changes are required to display the table in the format shown above?