Hello,
echo "<table><tr>";
while (list ($key, $val) = each ($users)) {
echo "<td>$val</td></tr>\n\n";
}
echo "</tr><tr>";
while (list ($key2, $val2) = each ($enable)) {
echo "<td>$val2</td></tr>\n\n";
}
echo "</tr></table>";
I want to format this into table with side by side where should be
$val $val2
Currently its in
$val
$val2
What should i amend to achieve this?
Thank you for your kind assistance.