This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| // Load the PHP API library. | |
| require_once 'streamsend-php/src/streamsend.php'; | |
| // Replace these with your actual API Login ID (username) and Key (password). | |
| // Refer to http://app.streamsend.com/docs/api/index.html for more information. | |
| define('STREAMSEND_USERNAME', 'abc'); | |
| define('STREAMSEND_PASSWORD', '123'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| // Load the PHP API library. | |
| require_once 'streamsend-php/src/streamsend.php'; | |
| // Replace these with your actual API Login ID (username) and Key (password). | |
| // Refer to http://app.streamsend.com/docs/api/index.html for more information. | |
| define('STREAMSEND_USERNAME', 'abc'); | |
| define('STREAMSEND_PASSWORD', '123'); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <? | |
| class CurlResponse | |
| { | |
| var $headers = array(); | |
| function CurlResponse () {} | |
| function parse_header ($handle, $header) |