Guest User

Untitled

a guest
Jul 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <h2>UPS</h2>
  2. <table>
  3. <?php
  4. $keyarray = array_keys($data[0]['Upssystem']);
  5.  
  6. foreach ($keyarray as $fieldname){
  7. echo "<th>".$fieldname."</th>";
  8. }
  9. foreach ($data as $orderkey=>$order){
  10. echo "<tr>";
  11. foreach ($keyarray as $fieldname){
  12. echo "<td>".$order['Upssystem'][$fieldname]."</td>";
  13. }
  14. echo "<tr>";
  15.  
  16. }?>
  17. </table>
Add Comment
Please, Sign In to add comment