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.
$usersand$enable? It seems as though you should just have a multi-dimensional array with the user and whether or not they are enabled...