Au secour retour de ligne php

Fermé
bretonm2004 Messages postés 319 Date d'inscription vendredi 9 mai 2008 Statut Membre Dernière intervention 30 août 2013 - 27 juil. 2010 à 21:54
bretonm2004 Messages postés 319 Date d'inscription vendredi 9 mai 2008 Statut Membre Dernière intervention 30 août 2013 - 28 juil. 2010 à 01:01
Bonjour,

quand j'affiche cette variable le tableau s'agrandi au lieu de faire un retour de ligne

<table width="401" height="215" border="0">
<tr>
<td width="65" valign="top">Message:</td>
<td width="326" align="left" valign="top"><? echo $row["message"];?></td>
</tr>
</table>

merci



1 réponse

essaye ca si j'ai bien compris ce que tu voulais ^^

<table width="401" height="215" border="0">
<tr>
<td width="65" valign="top">Message:</td>
</tr>
<tr>
<td width="326" align="left" valign="top"><? echo $row["message"];?></td>
</tr>
</table>
0
bretonm2004 Messages postés 319 Date d'inscription vendredi 9 mai 2008 Statut Membre Dernière intervention 30 août 2013 2
28 juil. 2010 à 01:01
non dsl ca ne fonctionne pas j ai essayé tout ca

mais en fouillant sur internet pour ceux a qui ca peut poser probleme voici la solution

$row['message'] = wordwrap($row['message'], 50, "<br />\n");

la fonction wordwrap
0