Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialLaura Reed
16,136 PointsNeed to pass all 4 args error. Tried several ways.
I'm not sure what this is looking for, watched previous vid several times.
<?php
include "helper.php";
try {
$results = $db->query(
"SELECT member_id, email, fullname, level FROM members"
);
} catch (Exception $e) {
echo $e->getMessage();
}
//add code below this line
$results->fetchAll();
foreach ($results as $item){
$db->send_offer($item[$member_id],$item[$email],$item[$fullname],$item[$level]);
}
1 Answer
Andrea Hurren
1,853 PointsI tried adding the code below and it worked. Looks like you need to fetch the data first and then loop trhough it, in order to use the send_offer function:
//fetch the data from the query above $resultArray = $results->fetchAll();
foreach( $resultArray as $result){ //assign a variable to each property in $resultArray $member_id = $result["member_id"]; $email = $result["email"]; $fullname = $result["fullname"]; $level = $result["level"];
//fire the send_offer function with variables above as parameters send_offer($member_id, $email, $fullname, $level)
}