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 trialSebastian Pikand
13,987 PointsStuck with extending PDO (php interfaces course)
Stuck... Commented out stuff I have tried so far.
<?php
class sqlRepository extends PDO implements RepositoryInterface
{
public function all($table) {
$result = parent::prepare($table);
/*$result = this::prepare($table);*/
$result->execute();
return $results->fetchAll();
/*$sql = "SELECT * FROM $table";
$results = new PDO;
$var = $results->prepare($table);
$var->execute;
return $var->fetchAll(PDO::FETCH_OBJ);*/
}
}
1 Answer
David Evans
10,490 PointsHi Sebastian, I had issues with this one as well.
I eventually solved it with the following code ( View the answer on that question ) : https://teamtreehouse.com/community/stuck-on-challenge-for-implementing-interfaces
Sebastian Pikand
13,987 PointsSebastian Pikand
13,987 PointsPerfect! Thanks