About CHECK BOX How to retrive values

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
aditya
Forum Newbie
Posts: 15
Joined: Mon Jan 15, 2007 7:44 am

About CHECK BOX How to retrive values

Post by aditya »

Hi

I have one form in that form i have to create checkboxes, and i have another form . From 1st form to second form how to retrive the values . and how print the first form values in second form . so please healp me i want code urgent please send me code in PHP
Thank you
Rovas
Forum Contributor
Posts: 272
Joined: Mon Aug 21, 2006 7:09 am
Location: Romania

Post by Rovas »

Nobody on this forum will write code for you maybe if you paid a BIG amount of money they will. Want you need is allready done search Google and this forum for chained select boxes.
User avatar
Kieran Huggins
DevNet Master
Posts: 3635
Joined: Wed Dec 06, 2006 4:14 pm
Location: Toronto, Canada
Contact:

Post by Kieran Huggins »

You don't actually want "chained select boxes", Those are something else entirely.

When writing out a check box you can set the "checked" attribute to "checked" or "true".

Code: Select all

<input type="checkbox" name="test_checkbox" checked="checked"/>
Post Reply