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 Build a Basic PHP Website (2018) Adding a Basic Form Utilizing Object Properties and Methods

Invalid Email Address Message with Valid Email->HELP

Here is the screenshot in workspace https://w.trhou.se/i5zmo3m1j3

I followed and rewrote this code twice and still I'm getting Invalid Email Address message with a valid email.

Alena Holligan can you view the code and explain what I missed from your video to cause the problem.

p.s I would appreciate help from anyone, so feel free to provide an answer if you can.

1 Answer

Alena Holligan
STAFF
Alena Holligan
Treehouse Teacher

this line

if ($name == "" || $email = "" || $details == ""){

is setting $email equal to an empty string, so it is no longer a valid email. The line SHOULD be

if ($name == "" || $email == "" || $details == ""){

Thank you Alena Holligan ^_^