Sending multiple check box values not in an array

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nuwansl
    New Member
    • Aug 2007
    • 2

    Sending multiple check box values not in an array

    I want to get value from multiple check box but not in array.
  • pbmods
    Recognized Expert Expert
    • Apr 2007
    • 5821

    #2
    Changed thread title to better describe the problem (did you know that threads whose titles do not follow the Posting Guidelines actually get FEWER responses?).

    Comment

    • mwasif
      Recognized Expert Contributor
      • Jul 2006
      • 802

      #3
      In which format do you need? For comma separated values you can use implode().
      [PHP]$comma_separate d = implode(",", $_POST["check_box_name "]);[/PHP]

      Comment

      Working...