Réponse acceptée !
Je crois pas que ce soit possible de modifier un fichier excel qui aura ete cree dans excel.. par contre, si ce fichier est entierement cree par toi, alors tu peux faire qqchose du genre:
$handle = fopen('ton fichier', "wb");
$content ='<html xmlns:o="urn:schemas-microsoft-com:office:office"
xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns="www.w3.org/TR/REC-html40&...
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-latin-1" />
<meta name="ProgId" content="Excel.Sheet" />
<meta name="Generator" content="Microsoft Excel 9" />
</head>
<body>
<table x:str="true" border="1" cellpadding="0" cellspacing="0">
<tr>
<th>nomCol1</th>
<th>nomCol2</th>
<th>nomCol3</th>
...
</tr>';
$content .= '<tr><td>...</td></tr>';
$content .= '</table></body></html>';
fwrite($handle, $content);
fclose($handle);
Pour le reste, je te laisse te debrouiller, c'est du code classique (resuperer les infos, ouvrir le fichier, se positionner, ecrire qqch, ...)
Enjoy, ++