| |||
PHP carry values from checkboxes how-toFriday Dec 16th 2005 For the last couple of days I’ve been working on this monster PHP form for my biz site. It’s definitely the biggest form I’ve ever done and it’s taken a lot of programming. So far it’s almost 30k just in code alone without any design like GIF’s and JPG’s and so on. The form is simple in nature. It’s a multi-page thing that carries values from one part to the next all contained within one file. A big obstacle (for me) was getting all checkbox values there were checked in the PHP form to carry from one part of the form to the next. Absolutely nowhere on the internet were any SIMPLE instructions on how to do it, so I did a lot of reading and found a way to make it simple. The answer was to put the values into an array and then implode it on destination, like this: <html> <?php } elseif ($step == "2") { if ($choices == "") { $getchoices = implode(", ", $choices); echo ("You chose $choices"); } else { } ?> </body> The [] for the name on input puts the values into an array. Implode takes the values of the array and separates the ones selected by commas and ta-da, you got it. I’m posting this process here just in case I ever forget how to do it and need a reference. ;-)
|
GARMIN stuffOther stuffPages
Other Cool Places |
||
|
today is Thursday, January 8 2009 - the time when you loaded this web page was 8:09am EST site copyright ©1975-2009 rich menga menga dot net is authored from tampa florida - a place where all the cool people are :-) if this web site has not been updated in the past 30 days, you can safely assume i'm sick, dead or finally got a life interesting enough to get away from the computer. | |||
rss feed for this article's comments
comments and pings are closed for this article