Innanzitutto grazie per le risposte, scusatemi se ho utilizzato un termine inappropriato, l'utente non deve uploadare nulla, vorrei solo che all'invio di un submit mi inviasse dei parametri a un file PHP il quale mi genera(se non esiste) oppure mi modifica, un file .css esistente nella cartella dell'utente...

Per ora ho fatto cosi:
Codice PHP:

 $myNewCss 
'
  header("Content-type: text/css");
 .sfondo{
  width:300px; height:50px; t; background-repeat:'
.$Proprieta_Sfondo.'; text-indent:-9999em
 }
 .header{
  width:300px; height:50px; t; background-repeat:'
.$Proprieta_Header.'; text-indent:-9999em
 }
 '
;
 
 
  
$file="http://localhost/_mySite/_userAccountFolder/$id_utente/myCss.css";
  
$apro=fopen($file,"w");
  
  
fwrite($apro,$myNewCss);
  
fclose($apro); 
ma ho un errore in quanto mi dice:

codice:
Warning:  fopen(http://localhost/_mySite/_userAccoun.../311/myCss.css) [function.fopen]: failed to open stream: HTTP wrapper does not support writeable connections in E:\xampp\htdocs\_mySite\_impostazioni\_scriptPHP\_modificaDesignCanale.php on line 52