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 ) Link to comment https://forums.phpfreaks.com/topic/208279-loop-through-the-_post-array/ 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 } Link to comment https://forums.phpfreaks.com/topic/208279-loop-through-the-_post-array/#findComment-1088518 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 Link to comment https://forums.phpfreaks.com/topic/208279-loop-through-the-_post-array/#findComment-1088528 Share on other sites More sharing options...
TheEvilMonkeyMan Posted July 20, 2010 Share Posted July 20, 2010 okay, glad I could help you mate Link to comment https://forums.phpfreaks.com/topic/208279-loop-through-the-_post-array/#findComment-1088537 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.