Hello there,
I have a php file that receives some POST values executes a query, and from that query result it sends this header:
header('Location: http://www.pedroteixeira.org/thennnow/images/'.$row[1].'.png');
So it currently just passes a link. How can I pass this link, but also two FLOAT values at row[2] and row[3] and a String at row[4]?
Should I make different headers?