random1 Posted December 13, 2007 Share Posted December 13, 2007 I have an array called '$records' that I then print_r() to print out the array: output is: Array ( [0] => Array ( [systemsetting_value] => Yes ) ) What does the about output mean? Is this a 2d array? How can I grab the value 'Yes' in the array above? I have tried echo $records[0]; Quote Link to comment Share on other sites More sharing options...
random1 Posted December 13, 2007 Author Share Posted December 13, 2007 Finally got it with: echo $records[0]['systemsetting_value']; 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.