Question bête avec pho

Résolu
Phpmode -  
 Phpmode -
Bonjour,
je voudrais pouvoir afficher mon echo $image mais comment faire?

<table width="353" border="0" cellspacing="0" cellpadding="0">
<tr>
<th height="95" background="clip.jpg" scope="col"><table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th width="266" height="23" scope="col"><div align="center">Enter</div></th>
</tr>
</table>
<table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<th scope="col"> echo $image </div></th>
</tr>
</table>
</th>
</tr>
</table>

Merci pour votre aide.

2 réponses

  1. Utilisateur anonyme
     
    comme ceci :

    $file_download= '<table width="353" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <th height="95" background="clip.jpg" scope="col"><table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <th width="266" height="23" scope="col"><div align="center">Enter</div></th>
    </tr>
    </table>
    <table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <th scope="col">'.$image.'</div></th>
    </tr>
    </table>
    </th>
    </tr>
    </table>'; 
    1
    1. Phpmode
       
      Mersi Beaucoup Sonik21!!!! ça Marche nickel!!!
      0
  2. muska92 Messages postés 317 Statut Membre 42
     
    <table width="353" border="0" cellspacing="0" cellpadding="0">
    <tr>
    <th height="95" background="clip.jpg" scope="col"><table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <th width="266" height="23" scope="col"><div align="center">Enter</div></th>
    </tr>
    </table>
    <table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
    <th scope="col"> <?php echo $image; ?> </div></th>
    </tr>
    </table>
    </th>
    </tr>
    </table>
    0
    1. Phpmode
       
      Bonjour merci pour la réponse.
      Excusez moi mais c'est pas ça. En Faite le code est le suivant:

      $file_download= '<table width="353" border="0" cellspacing="0" cellpadding="0">
      <tr>
      <th height="95" background="clip.jpg" scope="col"><table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
      <th width="266" height="23" scope="col"><div align="center">Enter</div></th>
      </tr>
      </table>
      <table width="300" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
      <th scope="col"> <?php echo $image; ?> </div></th>
      </tr>
      </table>
      </th>
      </tr>
      </table>';

      Dans ce cas là ça ne marche pas.
      Comment faire s'il vous plait?
      0