从复选框表单中创建数组

时间:2010-12-23 08:01:05

标签: php arrays checkbox

我的朋友和我正在建立一个根据您的兴趣编辑新闻故事的网站。有没有简单的方法来获取复选框数据并从所选复选框中创建一个数组?这是我们的表格

<form action="signup.php" method="POST">
    Name: <input type="text" name="name" /> <br />
    Username: <input type="text" name="username"> <br />
    Password: <input type="password" name="pwd" /> <br />
    Email: <input type="text" name="email" /> <br />

    <p>By filling out this we will be able to find news articles that will interest you</p>        <br />
    Politics<input type="checkbox" name="interest[]" value="Politics" /> <br />
    Entertainment<input type="checkbox" name="interest[]" value="Entertainment" /> <br />
    Tech <input type="checkbox" name="interest[]" value="Tech" /> <br />
    Health<input type="checkbox" name="interest[]" value="Health" /> <br />
    Living<input type="checkbox" name="interest[]" value="Living" /> <br />
    Travel <input type="checkbox" name="interest[]" value="Travel" /> <br />
    World<input type="checkbox" name="interest[]" value="World" /> <br />
    Leisure<input type="checkbox" name="interest[]" value="Leisure" /> <br />
    Finance<input type="checkbox" name="interest[]" value="Finance" /> <br />
    Celebrity Gossip<input type="checkbox" name="interest[]" value="Gossip" /> <br />
    Movies<input type="checkbox" name="interest[]" value="Movies" /> <br />
    Sports<input type="checkbox" name="interest[]" value="Sports" /> <br />

    <input type="submit" value="Submit">
</form>

我们如何使用这些数据创建一个php数组?

8 个答案:

答案 0 :(得分:30)

HTML标记:

<form method="get">
    <input type="checkbox" name="options[]" value="Politics"/> Politics<br/>
    <input type="checkbox" name="options[]" value="Movies"/> Movies<br/>
    <input type="checkbox" name="options[]" value="World "/> World<br/>
    <input type="submit" value="Go!" />
</form>

并在php代码中:

$checked = $_GET['options'];
for($i=0; $i < count($checked); $i++){
    echo "Selected " . $checked[$i] . "<br/>";
}

答案 1 :(得分:5)

使用它:

<input type="checkbox" name="mydata[checkbox1]"> Option 1 (politics etc)
<input type="checkbox" name="mydata[checkbox2]"> Option 2
<input type="checkbox" name="mydata[checkbox3]"> Option 3

然后将$ _POST [“mydata”]作为数组

进行访问

答案 2 :(得分:1)

抱歉,在我写完之前发布:(

对已发布的建议进行了一些改进:

使用表单的标签:

<label for="check_politics">Politics</label>
<input type="checkbox" name="intrests[]" id="check_politics" value="Politics"/>

在我看来,使用标签来增强表单是非常棒的:)如果你想让它们得到换行符,请将它们的显示设置为阻止。

并使用foreach在服务器端循环遍历:

$intrests = $_POST['intrests'];
foreach($intrests as $intrest) {
    echo $intrest . " is my intrest";
}

答案 3 :(得分:1)

我发现这样做的最好方法(至少对我而言)是将复选框值转换为数组,以便按照我想要的内爆和爆炸方式操作它:

<form action="thispage.php" method="post">

    (the previous fields here)

    <input type="checkbox" name="interests[]" value="Politics
    <input type="checkbox" name="interests[]" value="Entertainment
    <input type="checkbox" name="interests[]" value="Tech
    <input type="checkbox" name="interests[]" value="Health
    <input type="checkbox" name="interests[]" value="Living
    <input type="checkbox" name="interests[]" value="Travel
    <input type="checkbox" name="interests[]" value="World
    etc...

    <input type="submit" value="Submit">
</form>

和php(必须在表单之前):

<?php
if (isset($_POST['interests'])) {
    $interests_str = implode(" ", $_POST['interests']);// converts $_POST interests into a string
    $interests_array = explode(" ", $interests_str);// converts the string to an array which you can easily manipulate
}

for ($i = 0; $i > count($interests_array); $i++) {
    echo $interests_array[$i];// display the result as a string
}
?>

此脚本的优点是,您可以随时在文档中作为公共数组访问$ interests_array。

答案 4 :(得分:1)

嘿,我已经很容易创建复选框以及任何php格式的单选按钮。唯一的问题是我正在使用Codeigniter MVC框架。

以下是您可以在公共模型或任何帮助文件中插入的函数定义。

function createOptions($fieldName, $labelsArray=array(), $selectedOption, $fieldType,$valuesArray = array()) {
        $returnString = '';
        if(count($valuesArray)!=count($labelsArray))
            $valuesArray=$lebelsArray;
        if ($fieldType === 'checkbox') {
            for ($i=0;$i<count($labelsArray);$i++) {
                $returnString.='&nbsp&nbsp&nbsp<input type="checkbox" name=' . $fieldName.' value='.$valuesArray[$i].' id='.$valuesArray[$i];
                if(in_array($valuesArray[$i], $selectedOption)){
                        $returnString.=' checked="checked" ';
                }
                $returnString.=' />&nbsp&nbsp<label>'.$labelsArray[$i].'</label>';
            }
        }
        if ($fieldType === 'radio') {
            for ($i=0;$i<count($labelsArray);$i++) {
                $returnString.='&nbsp&nbsp<input type="radio" name=' . $fieldName.' value='.$valuesArray[$i].' id='.$valuesArray[$i];
                if($valuesArray[$i]== $selectedOption)
                        $returnString.=' checked="checked" ';
                $returnString.=' /><label>'.$labelsArray[$i].'</label>';
            }
        }
        return $returnString;
    }

并且,您必须在视图文件中将此函数称为

<?php
echo $this->common_model->createOptions('userHobbies[]', $hobbyOptions, $userHobbies, 'checkbox'); ?> 

第一个参数是复选框字段或无线电字段的名称,对于两种情况,所有选项的名称始终相同。 第二个是标签数组,第三个是选定的选项,它们会在加载表单时显示这些选项。第四种是字段类型,它将是一个字符串,作为“复选框”或“无线电”。第五个是值数组,如果存在,它将包含标签的值,其顺序与标签的顺序相同。如果不存在,则标签数组将被设为值数组。

答案 5 :(得分:0)

//options[] makes it an array
<form method="get">
    <input type="checkbox" name="options[]" value="Politics"/> Politics<br/>
    <input type="checkbox" name="options[]" value="Movies"/> Movies<br/>
    <input type="checkbox" name="options[]" value="World "/> World<br/>
    <input type="submit" value="Go!" />
</form>

您可以$_GET['options']

访问此阵列

尝试Print_r( $_GET['options']);查看其中的值。

答案 6 :(得分:0)

以下是处理发送到页面的数组变量的一般例程,它们位于常规名称/值变量中。

示例php:

<?php
/*
Summary: Output variables pushed to the page. Handle arrays that have been sent.
Remarks:  $_REQUEST handles posts or gets.
*/
echo '<pre>';
foreach($_REQUEST as $name => $value){
  if (is_array($value)) {
    echo "$name:<br />";

    // Assign array to something more mnemonic
    $items = $value; 
    foreach ($items as $item) {
      echo "  $item<br />";
    }
  } else {
    echo "$name: $value<br />";
  }
}
echo '</pre>';
?>

示例标记:

<form method="post"
      enctype="application/x-www-form-urlencoded"
      action="forms-process.php">
  <label>Customer name: <input name="customerName" /></label>
  <fieldset>
    <legend> Pizza Toppings </legend>
    <label> <input type="checkbox" name="toppings[]" value="bacon" /> Bacon </label>
    <label> <input type="checkbox" name="toppings[]" value="cheese" /> Extra Cheese </label>
    <label> <input type="checkbox" name="toppings[]" value="onion" /> Onion </label>
  </fieldset>
  <label><button>Submit order</button></label>
</form>  

示例输出:

customerName: John
toppings:
  bacon
  cheese

答案 7 :(得分:-2)

results.contacts = results.contacts.filter(function(c) {
  return c.participantSetting.existence;
});
res.json(results);