•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the PHP section within the Web Development category of DaniWeb, a massive community of 397,834 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,516 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our PHP advertiser: Lunarpages PHP Web Hosting
Views: 2067 | Replies: 1 | Solved
![]() |
•
•
Join Date: Aug 2006
Location: India
Posts: 4
Reputation:
Rep Power: 0
Solved Threads: 0
Greetings,
I need help with preselecting checkboxes in a HTML form.
The first form has several checkboxes and then I post this to a php page which based on the checkboxes selected will send out emails. Each check box corresponds to an email address. After I send an email to selected people, I then at a later point would like to send an update email. The second form should be pulling up information regarding these checkboxes and select boxes accordingly.
The checkbox portion in the form looks like this!
I then post the above to a PHP page, which then inserts these values into mysql database. I use array_merge to merge the values into a string into a database. When inserted, it get inserted as john@email.com,rambo@email.com,everyone@email.com. My second form has the same checkboxes but I am clueless regarding reading the checkbox values back and checking the boxes automatically.
Please advise!
Thank you in advance,
- Gravis
I need help with preselecting checkboxes in a HTML form.
The first form has several checkboxes and then I post this to a php page which based on the checkboxes selected will send out emails. Each check box corresponds to an email address. After I send an email to selected people, I then at a later point would like to send an update email. The second form should be pulling up information regarding these checkboxes and select boxes accordingly.
The checkbox portion in the form looks like this!
<INPUT TYPE=CHECKBOX NAME=dl[] VALUE=john@email.com>John <INPUT TYPE=CHECKBOX NAME=dl1[] VALUE=rambo@email.com>Rambo <INPUT TYPE=CHECKBOX NAME=dl2[] VALUE=everyone@email.com>Everyone
I then post the above to a PHP page, which then inserts these values into mysql database. I use array_merge to merge the values into a string into a database. When inserted, it get inserted as john@email.com,rambo@email.com,everyone@email.com. My second form has the same checkboxes but I am clueless regarding reading the checkbox values back and checking the boxes automatically.
Please advise!
Thank you in advance,
- Gravis
•
•
Join Date: Jul 2004
Location: North East Indiana
Posts: 491
Reputation:
Rep Power: 5
Solved Threads: 20
Use the "checked" option.
You'll likely want to bookmark this page:
http://www.w3.org/TR/REC-html40/interact/forms.html
A couple notes:
1. Always put your HTML options in quotes. If you get a space in the input field somewhere, it will interpret it up to the space.
2. Take care in placing the boxes to avoid ambiguity and save your users some trouble. Don't check them all "for" the user if the user is likely to uncheck them all.
<INPUT TYPE=CHECKBOX NAME=dl[] checked VALUE=john@email.com>John
You'll likely want to bookmark this page:
http://www.w3.org/TR/REC-html40/interact/forms.html
A couple notes:
1. Always put your HTML options in quotes. If you get a space in the input field somewhere, it will interpret it up to the space.
2. Take care in placing the boxes to avoid ambiguity and save your users some trouble. Don't check them all "for" the user if the user is likely to uncheck them all.
www.uncreativelabs.net
Old computers are getting to be a lost art. Here at Uncreative Labs, we still enjoy using the old computers. Sometimes we want to see how far a particular system can go, other times we use a stock system to remind ourselves of what we once had.
Old computers are getting to be a lost art. Here at Uncreative Labs, we still enjoy using the old computers. Sometimes we want to see how far a particular system can go, other times we use a stock system to remind ourselves of what we once had.
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb PHP Marketplace
Similar Threads
- MySQL Checkbox Multiple data Delete? (PHP)
- Checkboxes array (ASP)
- Select Box populates text field (JavaScript / DHTML / AJAX)
- Changing the colour of the arrows of a select menu in a form (HTML and CSS)
- owner form display problem (VB.NET)
- How to entice people to actually register? (Growing an Online Community)
Other Threads in the PHP Forum
- Previous Thread: Sending HTML message to Outlook
- Next Thread: Please Help! parse error, unexpected T_STRING


Linear Mode