Hello there,
I have a PHP file that sends a header like this:
header('Location: http://www.whatever.com/images/'.$row[1].'.png');
Basiclly what I'm doing is redirecting to the file on the server.
The thing is, I need to send more information other than the picture location.
I need to send another 4 strings that are taken from the database.
Is it possible to send multiple headers? Or is there any other way to go around this?
Since I'm on the subject, how do I send a String on a header?
Thank you very much for your time