ank101302 Posted December 15, 2012 Share Posted December 15, 2012 I am trying to print checkbox selections on a different page. I have a conformation.php file which needs to show the selected choices from the order page, but all I am getting it to print is the word Array. Any ideas? I have tried for the last 30 mins to figure this out and its not coming to me on what I am doing wrong. Thanks. Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/ Share on other sites More sharing options...
Pikachu2000 Posted December 15, 2012 Share Posted December 15, 2012 You can't directly echo an array. You need to loop over it with foreach and echo each element in the loop. Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/#findComment-1399485 Share on other sites More sharing options...
ank101302 Posted December 15, 2012 Author Share Posted December 15, 2012 I am not printing an array. I am doing a project for school which requires me to make a page with a list of sandwiches and options for those sandwiches (toppings, breads, meats, etc). I need to print the conformation page with the selections for each sandwich. The only thing I can get to print is a list of sandwiches, then a list of toppings, etc. I need them to go by sandwich. Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/#findComment-1399486 Share on other sites More sharing options...
Pikachu2000 Posted December 15, 2012 Share Posted December 15, 2012 If it says 'Array', then what makes you think it's anything other than an array? Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/#findComment-1399488 Share on other sites More sharing options...
ank101302 Posted December 15, 2012 Author Share Posted December 15, 2012 I am not trying to print an array so I do not understand why it is saying array at all. Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/#findComment-1399489 Share on other sites More sharing options...
Pikachu2000 Posted December 15, 2012 Share Posted December 15, 2012 It is most assuredly an array. Post the form html, and the code that processes it. Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/#findComment-1399490 Share on other sites More sharing options...
Jessica Posted December 15, 2012 Share Posted December 15, 2012 Yeah unless your code says echo 'Array', then you are actually trying to print an array. Do you know what an array is? Link to comment https://forums.phpfreaks.com/topic/272018-printing-checkbox-selections/#findComment-1399493 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.