This the array that I have to work with, it is generated by web host manager...
$viewaccounts = listaccts( $host , $user , $accesshash , 0);
$keys = array_keys( $viewaccounts );
print_r(array_keys($viewaccounts));
returns
Array ( [0] => allgo [2] => kandg [3] => can411 [4] => cheryl [5] => wwwforw [6] => forward [7] => fwe [8] => idaniela [9] => idev [10] => idevnet [11] => idigital [12] => imagesto [13] => mirndt [14] => mmorpgma [15] => noojam55 [16] => stockblu [17] => stockima [18] => usa411 [19] => kahouty [20] => yvette )
I need to display it like this:
allgo
kandg
can411
cheryl
wwwforw
forward
fwe
(etc) just need to put a <br> after each...
can anyone help?
thanks
-Arron