Ciao,
premetto che sono abbastanza ignorante sulla questione PHP.
Quello che mi servirebbe capire è come riuscire a far caricare un file che risiede sul computer dell'utente tramite una form ovvero:

ho dei campi di testo e un campo dove far selezionare il file dall'utente una volta fatto questo cosa devo inserire nel codice PHP per fare in modo che oltre ai dati testuali venga allegato il file.

il codice che ho ora è il seguente:

Codice PHP:
<?php
 
 $headers 
.= "Content-Type: text/html; charset= iso-8859-1\n\n";

 
$dachinome=trim(stripslashes($_POST["nome"]));

 
$dachiemail="<".trim(stripslashes($_POST["mail"])).">"

 
$headers .= "From: $dachinome $dachiemail\r\n";
 
 
$to ="info@turbolento.net";
 
 
$subject ="TURBOLENTO.NET .: Iscrizione PedalatAzzurra :.";
 
 
$body "
Dati dell'utente:\n\n

"
;
 
$body .= "[b]Nome[/b]: " trim(stripslashes($_POST["nome"]))  . "
\n"
;
 
$body .= "[b]Cognome[/b]: " trim(stripslashes($_POST["cognome"]))  . "
\n"
;
 
$body .= "[b]Via[/b]: " trim(stripslashes($_POST["via"]))  . "
\n"
;
 
$body .= "[b]C.A.P.[/b]: " trim(stripslashes($_POST["cap"]))  . "
\n"
;
 
$body .= "[b]CItt&agrave;[/b]: " trim(stripslashes($_POST["citta"]))  . "
\n"
;
 
$body .= "[b]Tel.[/b]: " trim(stripslashes($_POST["tel"]))  . "
\n"
;
 
$body .= "[b]E-mail[/b]: " trim(stripslashes($_POST["mail"]))  . "
\n"
;
 
$body .= "[b]Data di nascita[/b]: " trim(stripslashes($_POST["data"]))  . "
\n"
;
 
$body .= "[b]Societ&agrave; sportiva[/b]: " trim(stripslashes($_POST["ass_sport"]))  . "
\n"
;
 
$body .= "[b]N&deg; tessera[/b]: " trim(stripslashes($_POST["num_tessera"]))  . "
\n"
;
 


 
  if (@
mail($to$subject$body$headers))
 {
 
     echo 
"la mail &egrave; stata inviata correttamente";
 
    
$headers "Content-Type: text/html; charset= iso-8859-1\n\n"

    
$headers .= "From: \r\n";

    
mail($_POST["mail"],$subject$body$headers);
 
 }
 
 else
 
 {
 
     echo 
"Si sono verificati dei problemi nell'invio della mail.
"
;
    echo 
"[url='pop.html']riprova[/url]";
 
 }
   
?>