a me non funge



Codice PHP:
<body>
<?php 
    $datafile 
"lista.xml";
    
    
$messaggio "ciao ciao ciao";
    
    
$fp fopen($datafile"w");
    
$fw fwrite($fp$messaggio);
    
$fc fclose($fp);    

?>

</body>