freelance84 Posted July 20, 2010 Share Posted July 20, 2010 Ok having a bit of a mental block here... print_r($_POST) looks like: Array ( [length] => 18 [level] => 5 [last] => 8 [ability] => 5 [independant] => 5 [time] => 5 [pear] => 5 [contribution] => 1 ) My mind is fried today. What I need from the array is both components, eg: [length] => 18 Length is the name of the field in the mysql table and 18 is the value. I know this is really basic but how set a loop to get both values, I can't just manually go through the $_POST array because it changes upon user input (both field name and value) Any pointers here would be very much appreciated (as usual ) Quote Link to comment Share on other sites More sharing options...
TheEvilMonkeyMan Posted July 20, 2010 Share Posted July 20, 2010 Can't you do this? foreach($_POST as $key => $value) { // Do something with each $key and $value } Quote Link to comment Share on other sites More sharing options...
freelance84 Posted July 20, 2010 Author Share Posted July 20, 2010 yes, yes i can. Thanks a bunch, I've not actually used the foreach before, so far just only required the for loops. Cheers Quote Link to comment Share on other sites More sharing options...
TheEvilMonkeyMan Posted July 20, 2010 Share Posted July 20, 2010 okay, glad I could help you mate 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.