|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-13 04:07 UTC] stas at cvs dot php dot net
[2000-08-08 23:00 UTC] waldschrott@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 23:00:01 2025 UTC |
I may give you a short script... foreach($arr as $Row){ print "<tr>"; foreach($Row as $Value) print "<td>$Value</td>"; print "</tr>"; } The output of $Row works fine, but: $Value comes like the following: Value1 Value1 Value2 Value2 Value3 Value3 .....and so on. I hope this can help you, Chris