Call me out if this is a duplicate question, but this is starting to get ridiculous. I want to, with PHP:
GET http://www.example.com/hello.xyz
And add this header to the request:
"X-Header-Name: $foobar"
where foobar comes from a php variable that is already defined.
and then store the response in a variable. That's it! Nothing more, nothing less.
But I can't find it!
I don't want to use curl or anything like that, it'd slow it down too much if I run curl everytime. Edit: My main concern with using curl is about compatibility with Windows (local server) vs. Linux (deployment server).
<?php
echo "So, how do I do it in the simplest way possible?";
?>