How can I take the below array and make it an in-line array?
// Store user-data in array
$USER = array();
// first user info
$USER[1] = "username";
$USER[1] = "password";
$USER[1] = "rank";
$USER[1] = "session id";
// second user info
$USER[2] = "username";
$USER[2] = "password";
$USER[2] = "rank";
$USER[2] = "session id";
// next user ...
When I say in-line I mean that I want to take the above two user arrays and put it in one line like the below model to save space:
$USER = array(
// First user
"username", "password", "rank", "session id"
// Second user
"username", "password", "rank", "session id"
);