bonjour,
j ai creer un code qui me permet d’“exporter” une page vue par l’utilisateur en word.
Le problème c est l’image!
en effet, je met un lien vers l’image que je veux, mais pour qu elle s affiche correctement dans word, il faut qu elle soit dans le bon chemin…ce qui est pas tres pratique
si on deplace le fichier dans un dossier que la ou il y a l image, plus d image a l ouverture du fichier!!!
comment faire pour l’integrer dans le documents word?
je vous joins le code que j ai fait:
merci
<?php
header("Content-Type: application/x-msword;name=devis.doc\n");
header("Content-Disposition: attachment;filename=devis.doc\n");
$date=date('Y-m-d');
$date_fr=date('d/m/Y');
include '../connexion.php';
// Requete - Execution
$sql_recherche = "SELECT * FROM client WHERE id_client='$id_client'";
$req_recherche = mysql_query($sql_recherche) or die(mysql_error());
while($data_recherche = mysql_fetch_array($req_recherche))
{
$client=$data_recherche['Nom'];
$adresse=$data_recherche['Adresse'];
$ville=$data_recherche['ville'];
$code_postal=$data_recherche['code_postal'];
}
echo '<img src="images/sad.PNG" width="256" height="60"><br>';
echo '<br><br>';
echo '<Blockquote><Blockquote><Blockquote><Blockquote><Blockquote>'.$client.'<br>';
echo $adresse.'<br>';
echo $code_postal.' '.$ville.'</Blockquote></Blockquote></Blockquote></Blockquote></Blockquote><br><br>';
echo 'Le '.$date_fr.'<br><br>';
if($modifier==1)
echo 'Devis n°'.$numero_devis_modifier;
else
echo 'Devis n°'.$num;
echo '<br>';
echo '<table border=1>';
echo '<tr><td>Référence</td><td>Désignation</td><td>Prix unitaire</td><td>Quantité</td><td>Prix Total</td></tr>';
for($i=0;$i<=9;$i++)
{
$quantite_temp='quantite_'.$i;
$quantite=$$quantite_temp;
if($quantite!=0)
{
$designation_temp='designation_'.$i;
$designation=$$designation_temp;
$ref_sad_temp='ref_sad_'.$i;
$ref_sad=$$ref_sad_temp;
$prix_achat_temp='prix_achat_'.$i;
$prix_achat=$$prix_achat_temp;
$coeff_temp='coeff_'.$i;
$coeff=$$coeff_temp;
if($coeff_global!=1)
$coeff=$coeff_global;
echo '<tr>';
echo '<td>'.$ref_sad.'</td><td width="200">'.$designation.'</td><td width="100">'.$prix_achat*$coeff.'</td><td width="100">'.$quantite.'</td><td width="100">'.$coeff*$prix_achat*$quantite.'</td>';
echo '</tr>';
$total=$coeff*$prix_achat*$quantite+$total;
}
}
echo '</table>';
echo 'Montant total de '.$total.' HT pour le devis';
echo '<br><br><br>';
echo $remarques.'<br>';
?>
<script langage="javascript">
window.close();
</script>
<?php