Results 1 to 3 of 3

Thread: checkbox problems..need help

  1. #1
    Join Date
    Sep 2006
    Posts
    30
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default checkbox problems..need help

    hello there,

    i have a problem about a checkbox..i need to store the data from these checkbox..i have 6-7 checkbox..so how can i save the data from the checkbox to the database??..and how can i update the checkbox?? i really don'y know...

    this is sample of my checkbox..

    <input name="type[]" type="checkbox" id="type[]" value="Warehouse Licence"></td>

    <input name="type[]" type="checkbox" id="type[]" value="Manufacturing Warehouse Licence">

    <input name="type[]" type="checkbox" id="type[]" value="Duty Free Shop Licence">

    <input name="type[]" type="checkbox" id="type[]" value="Inland Clearance Depot Licence"></td>
    can someone help me towards this??

  2. #2
    Join Date
    Dec 2004
    Location
    UK
    Posts
    2,358
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by syazyan View Post
    i need to store the data from these checkbox..i have 6-7 checkbox..so how can i save the data from the checkbox to the database??
    Obtain the values from either the $_GET or $_POST superglobals (depending on the method used to submit the form), and use those values in a query.

    ..and how can i update the checkbox??
    What's that supposed to mean?

    <input name="type[]" type="checkbox" id="type[]" value="Warehouse Licence">
    The mark-up you posted is invalid: id attribute values cannot contain square brackets, and values must be unique.

    The name and id attribute values of form controls don't need to be the same. In fact, one usually doesn't need id attributes on form controls at all.

    Mike

  3. #3
    Join Date
    Sep 2006
    Posts
    30
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default tq mwinter

    tq for ur explanation mwinter...i have solved my problem..

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •