Email form problems

Hi folks,

I know I might come off as a noob, and you are right.
As I am currently fiddling around trying to make an email form
for my website, I have gone through numerous php script in order
to make this fairly easy one work-it just doesn’t. Perhaps anyone
can give me a link to a place where I might get some assistence?

The HTML code looks like this:

<form action=“send_form_email.php” method=“post” enctype=“text/plain”>
<font color=“AFBC25”>
Namn<br />
<input type=“text” name=“name” value=“Name” /><br />
Address<br />
<input type=“text” name=“address” value=“Address” /><br />
Postnummer<br />
<input type=“text” name=“post” value=“Zipr” /><br />
Ort<br />
<input type=“text” name=“city” value=“City” /><br />
Email<br/>
<input type=“text” name=“email” value=“Email” /><br />
Telefonnummer<br/>
<input type=“text” name=“tele” value=“Telephone” /><br />
Upload 1<br/>
<input type=“file” name=“datafile” size=“40”><br>
Upload 2<br/>
<input type=“file” name=“datafile” size=“40”>

<p>
<p>
<p><font color=“AFBC25”>Current service<br>
<input type=“checkbox” name=“tjanst” value=“2mån” /> > 2m<br />
<input type=“checkbox” name=“tjanst” value=“2mån” /> < 2m <br />
<input type=“checkbox” name=“tjanst” value=“ingen” /> Ingen <br />
<p>
<input type=“submit” value=“Submit”>
<input type=“reset” value=“reset”>

</form>

Now I can get the first part but not the upload not checkbox parts to work…the php script for those parts or an explanation would be muc appreciado.

-Noob