Hey,
Thanks for trying guys,
Let me try to make the question super simple to understand cause we've gotten a bit off track.
Code:
if (!empty($errors)) {
header("Location: feedback_error.php?errors=" . urlencode(implode(", ", $errors)));
exit;
}
How can I add more to this line, so that more shows up in the browser window.
I tried...
Code:
if (!empty($errors)) {
header("Location: feedback_error.php?errors=" . urlencode(implode(", ", $errors)) . "&name=");
exit;
}
But that doesn't add it to the url.
Any ideas?
Thanks,
Mario
Bookmarks