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

Prakhar Patwa
Prakhar Patwa
11,260 Points

Notice: Undefined variable: first_name. getting it even after declaring

how to remove that notice ?

1 Answer

Adam Pengh
Adam Pengh
29,881 Points

You can edit the php.ini file. There's a section called "Error handling and logging". YOu can set the error_reporting directive to E_ALL & ~E_NOTICE. This will only show more severe php warnings/errors.

The other option is to declare your variables before using:

$var = ''; // empty string
$num = 0;
Prakhar Patwa
Prakhar Patwa
11,260 Points

Adam pengh if i am using empty string it giving me an error on a registration form without even submitting.