Thread LWP Fileuplaod (1 answers)
Opened by KCobain at 2011-10-04 22:45

KCobain
 2011-10-04 22:45
#152858 #152858
User since
2011-10-03
34 Artikel
BenutzerIn
[default_avatar]
Moinsen,
ich probiere eine Funktion zu schreiben, die einen File hochlädt
Code: (dl )
1
2
3
4
5
6
7
8
9
sub upload(){
my $self = shift;
my $browser = new LWP::UserAgent;
my $resp;
my $ret;
my $UTF_WHO = 'PerlUpload/0.1';
$browser->agent($UTF_WHO);
my $resp = $browser->post('api.domain.de/upload.php',[0 => ???]);
}

0 ist ein feld vom typ file - jetzt weis ich nit ob bei den ??? der Dateipfad oder der inhalt hin muss. wäre nett wenn ihr mir helfen könntet

View full thread LWP Fileuplaod