Code...
well i want each array value to be like this...in their own cellPHP Code:echo "<table>";
foreach($output as $val)
{
echo "<tr>";
echo "<td>";
echo $val;
echo "</td>";
echo "</tr>";
}
echo "</table>";
and with the code above it is supposed to do that!...guess what, It DOESNT!Code:<table> <tr> <td> *value here* </td> </tr> <tr> <td> *next value* ... ... ...so on
it creates a new table a tr a td for each value so i end up having tons of tables :/
anyone knows what's wrong with it ?...
Thanks!
many thanks to visualadhe corrected me...
THREAD RESOLVED!




he corrected me...

Reply With Quote