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 Using PHP with MySQL Querying the Database with PHP Querying the Database

Fabian Kaegy
Fabian Kaegy
17,155 Points

Undefinded class constante

i have a fatal error in my script: Fatal error: Undefined class constant 'ERRMODE_EXEPTION' in *\htdocs****\database\index.php on line 5

Here is my code:

<?php

try { $db = new PDO("mysql:host=localhost;dbname=***;port:3306", "", ""); $db->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXEPTION); // <- Error $db->exec("SET NAMES 'utf8'"); } catch (Exeption $e) { echo "Could not connect to the database."; exit; }

try { $results = $db->query("SELECT ****, ***** FROM ******"); echo "Our query ran successfully."; } catch (Exeption $e) { echo "Data could not be retrived from the database."; exit; }

?>

1 Answer

Seth Reece
Seth Reece
32,867 Points

Exception. You have Exeption.