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 trial

PHP Designing Interfaces in PHP Introducing Interfaces Implement MySQL RepositoryInterface

Qamar Ramzan
Qamar Ramzan
9,786 Points

This task seems to be missing info for the PDO

I'm stuck on this task! Part of the the task is to create a mySQL connection using PDO but no info such as passwords etc are given. Am i missing something obvious here!!!?

sqlRepository.php
<?php
class sqlRepository extends PDO implements RepositoryInterface
{

    public $servername;
    public $username;
    public $password;
    public $myDB;
    public $stmt;

  public function __constructor($servername, $username, $password, $myDB) 
  {
    $this->servername = $servername;
    $this->username = $username;
    $this->password = $password;
    $this->myDB = $myDB;
    $conn = new PDO("mysql:host=$this->servername;dbname=$this->myDB", $this->username, $this->password);

  }



  public function all($conn)
  {
      $stmt = $conn->prepare("SELECT FROM events");
      $stmt->execute();  
      $result = $stmt->fetchAll(PDO::FETCH_OBJ);
      return $result;
  }
}