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

Łukasz Czuliński
Łukasz Czuliński
8,646 Points

Linking to MySQL for first time; erroneous PDO arguments?

My page is completely blank when I call var_dump() here.

Here's the PHP:

<? php

$db = new PDO("mysql:host=localhost;dbname=stl;port=3306", "root", "____");

var_dump($db);

?>

I'm running WAMPSERVER and have checked that the server is currently running and the port is indeed 3306. My username is root and the password is entered correctly. I also have a db already created named stl. Any ideas what I'm doing wrong?

1 Answer

Łukasz Czuliński
Łukasz Czuliński
8,646 Points

Solved. This ended up being a privileges issue.