PHP Print Array Nice Format (plusieurs tableaux)

print "
<table style='width:100%'>
  <tr>".
    "<td><pre>".print_r($p1,  true)."</pre></td>".
	"<td><pre>".print_r($p2,  true)."</pre></td>".
	"<td><pre>".print_r($p3,  true)."</pre></td>".
	"<td><pre>".print_r($p4,  true)."</pre></td>".
	"<td><pre>".print_r($p5,  true)."</pre></td>".
  "</tr>
</table>
";
Tame Teira