Question bête avec pho
Résolu
Phpmode
-
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.
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
-
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>';
-
<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>-
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?
-