pc-world: Problem bei multipart/form-data

Ich habe ein Problem bei einer HTTP-Anfrage, mit der ein Formular über multipart/form-data gesendet werden soll.
Es soll eine Datei und andere normale Parameter über POST verschicken.

Die HTTP-Anfrage sieht schon so aus:

POST /uploaded.php HTTP/1.0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: de-de,de;q=0.5
Accept-Encoding: gzip,deflateAccept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 300
Connection: Keep-Alive
Referer: http://www.xyz.de/
Cookie:
Content-Type: multipart/form-data; boundary=dill
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.0.1) Gecko/2008070208 Firefox/3.0.1
Host: www.xyz.de
Content-Length: 299798

Pragma: no-cache

--dill
Content-Disposition: form-data; name="uploadfile"; filename="dasBild.jpg"
Content-Type: image/jpeg

/* Die Datei *\ --dill--

Jetzt ist meine Frage: Wie kann ich jetzt noch andere, normale POST-Parameter einbinden?