Skip to content
Snippets Groups Projects
Commit 8b720c5f authored by Imran Hussain's avatar Imran Hussain
Browse files

fix suapi

parent c2cb2fef
No related branches found
No related tags found
3 merge requests!55Beta hasn't exploded, lets push these to live,!52Master,!51Update Room.txt with a bit more useful information
Pipeline #
......@@ -31,8 +31,10 @@ $membership_data = $formated_raw_data["table1"]["table1_Product_Collection"]["ta
// make a new array that just contains *every* member no matter what they bought
$just_members = array();
foreach ($membership_data["Detail_Collection"]["Detail"] as $member) {
array_push($just_members, $member["@attributes"]);
foreach ($membership_data as $typeOfMember) {
foreach ($typeOfMember["Detail_Collection"]["Detail"] as $member) {
array_push($just_members, $member["@attributes"]);
}
}
/* You can now use $just_members to probe member detials. It's an array of arrays which each contain:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment