Created
October 27, 2014 12:45
-
-
Save Prithvirajbilla/fa88f3fffe8279ff5adb to your computer and use it in GitHub Desktop.
Revisions
-
Prithvirajbilla created this gist
Oct 27, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,15 @@ <?php function getfromweb($url, $username = null, $password = null) { $opts = array('http' => array( 'method' => 'GET', 'header' => "Authorization: Basic ".base64_encode("$username:$password")."\r\n") ); $context = stream_context_create($opts); $result = file_get_contents($url, false, $context); return $result; } echo getfromweb("http://placements.iitb.ac.in/blog/?feed=rss2","username","password"); ?>