Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. $data = 'a:2:{i:0;a:3:{s:4:"Item";s:33:"Facilitation (Content or Process)";s:26:"Description (If different)";s:4:"Test";s:3:"Qty";s:1:"1";}i:1;a:3:{s:4:"Item";s:13:"Second Choice";s:26:"Description (If different)";s:4:"Test";s:3:"Qty";s:1:"2";}}';
  2. $line_items = unserialize($data);
  3. foreach ($line_items as $line_item)
  4. {
  5. $qty = $line_item['Qty'];
  6. $description = $line_item['Description (If different)'];
  7. $item = $line_item['Item'];
  8. echo '****************';
  9. echo '<br>';
  10. echo 'QTY: '.$qty;
  11. echo '<br>';
  12. echo $description;
  13. echo '<br>';
  14. echo $item;
  15. echo '<br>';
  16. echo '****************';
  17. echo '<br>';
  18. echo '<br>';
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement