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 trialPaulo Baptista
Courses Plus Student 3,391 PointsRedirect to thanks.php not working
I'm working with a local server and my page doesn't redirect to thanks.php
The only thing that seems to make it work is if I add ob_start(); to the top of my code, but I don't fully get what this ob_start() is doing and if I can just get along with it to continue the course.
Thanks!
2 Answers
Jason Anello
Courses Plus Student 94,610 PointsHi Paulo,
I answered a similar question here: https://teamtreehouse.com/community/form-redirect-to-thanksphp
See if that helps you out.
Matthew Bilz
15,829 PointsHi there,
Is there any whitespace before your header relocation statement? Or any echo statements? Those 2 things can cause an error message when you're looking to redirect in a PHP file.
You'd want something like:
if($success) {
header("Location:thanks.php");
exit;
}
Unsubscribed User
2,661 PointsUnsubscribed User
2,661 Points(y) thanks!