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 trialcasthrademosthene
6,275 PointsInvalid 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
Treehouse Teacherthis 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 == ""){
casthrademosthene
6,275 Pointscasthrademosthene
6,275 PointsThank you Alena Holligan ^_^