echo “”;
while (list ($key, $val) = each ($users)) {
echo “$val\n\n”;
}
echo “”;
while (list ($key2, $val2) = each ($enable)) {
echo “$val2\n\n”;
}
echo “”;
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.
I think I see what you’re trying to do now. Something to this effect?: