interable Posted October 23, 2018 Share Posted October 23, 2018 how to echo value of arrays clients in the tblclients sql? example <?php require("init.php"); //Get the client count $table = "tblclients"; $fields = "COUNT(*) AS clientcount"; $result = select_query($table,$fields); while ($data = mysql_fetch_array($result)) { $clientcount = $data['clientcount']; } echo $clientcount; ?> but i need get array of clients for this echo clients['state'] 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.