Warning: Header may not contain more than a single header, new line detected in

I’m using a POST and GET to insert variables into MYSQL. And I’m getting this error:

Warning: Header may not contain more than a single header, new line detected in

Code:

<?php $name = $_POST["Name"]; $email = $_POST["Email"]; $title = $_POST["Title"]; $rating = $_POST["Rating"]; $review = $_POST["Review"]; $broker = $_GET["Broker"]; header("Location: /thankyou-review.php?Name=$name&Email=$email&Title=$title&Rating=$rating&Review=$review&Broker=$broker"); ?>

Now review contains a paragraphs, which may contain break space, etc… Please advise.

Sponsor our Newsletter | Privacy Policy | Terms of Service