Hi all,
I've to redirect to a new page and I need to add some line to http header.
I'm asking if this is possible to do in php.
Example:
header("Location: mydotcom.php");
header("Content-Length: 500");
Naturally this don't works, because the "content-length" information is sents to current page, not to mydotcom.php.
Any idea or info to help me?