Ämne: Hämta fil?
Visa ett inlägg
Oläst 2007-11-07, 12:16 #3
jahaa jahaa är inte uppkopplad
Medlem
 
Reg.datum: Jun 2004
Inlägg: 91
jahaa jahaa är inte uppkopplad
Medlem
 
Reg.datum: Jun 2004
Inlägg: 91
Detta bör fungera

Kod:
<?php
$auth = sprintf('Authorization: Basic %s', base64_encode('username:password') );

$opts = array(
  'http'=>array(
  'method'=>'GET',
  'header'=> $auth)
);

$context = stream_context_create($opts);

fopen('http://host/directory/file.ext','r', false, $context);
?>
jahaa är inte uppkopplad   Svara med citatSvara med citat