Bonsoir, j'ai une petite question :
Est-il mieux de faire :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
 
if($date = $redate)
{
echo "<table>\n";
echo "<tr>\n";
echo "<th></th>\n";
echo "</tr>\n";
echo "<tr>\n";
echo "<td></td>\n";
echo "</tr>\n";
echo "</table>";
}
?>
ou

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
if($date = $redate)
{ ?>
<table>
<tr>
<th></th>
</tr>
<tr>
<td></td>
</tr>
</table>
<?php
}
?>