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 trialDavid Choi
8,536 PointsHeader Function Question
In the video, Alena reminds us that there must be no output before header function for the redirect to work. However, if we look at the code:
echo "<pre>";
$email_body = "";
$email_body .= "Name " . $name . "\n";
$email_body .= "Email " . $email . "\n";
$email_body .= "Details " . $details . "\n";
echo $email_body;
echo "</pre>";
//To Do: Send Email
header("location:suggest.php?status=thanks");
Shouldn't the echo of $email_body and </pre> mess up the header function, stopping the redirect from happening?
1 Answer
Jason Anello
Courses Plus Student 94,610 PointsHi David,
There was a similar question that I answered which should help you out. https://teamtreehouse.com/community/confused-why-does-header-work-if-an-echo-is-already-sent-to-the-browser-first
DavidPaul sullivan
17,377 PointsDavidPaul sullivan
17,377 PointsI just spent like 20mins trying to figure out what i missed. I'm working in my own local dev so it wouldn't work >< thanks Jason Anello super clutch