HTTP Request without CURL
A short tutorial on how to make a simple object for HTTP request without the need of using CURL.
The way to accomplish that is using the function stream_context_create to prepare the string, and then you use fopen and stream_get_contents to get the response.
<?php
class Custom_Http_Request
{
private $_url;
private $_body;
...
Published in: PHP
