Advertisement
Trigub_Ilia

CURL с авторизацией PHP GET

Aug 1st, 2022
1,438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1. if( $curl = curl_init() ) {
  2.     curl_setopt($curl, CURLOPT_URL, 'http://dewdwe/dewdew/hs/mihkz/getdoctor?roomid=111');
  3.     curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
  4.     curl_setopt($curl, CURLOPT_USERPWD,"Админ:dwedewdewdwe");
  5.     $out = curl_exec($curl);
  6.     echo $out;
  7.     curl_close($curl);
  8. }
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement