私の友人と私はあなたの興味に基づいてニュース記事を編集するウェブサイトを作っています。チェックボックスのデータを取得して、選択したチェックボックスから配列を作成する簡単な方法はありますか?こちらがフォームです
<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配列をどのように作成しますか?
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/>";
}
これを使って:
<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"]に配列としてアクセスします
申し訳ありませんが、書き込みが完了する前に投稿されました:(
すでに投稿されている提案のほんのいくつかの改善:
フォームにラベルを使用します。
<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";
}
(少なくとも私にとっては)これを行うために見つけた最良の方法は、チェックボックスの値を配列に変換して、それを私がインプロードとエクスプロードで望んだ方法で操作することでした:
<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にアクセスできることです。
ちょっと、チェックボックスとラジオボタンを任意の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.='   <input type="checkbox" name=' . $fieldName.' value='.$valuesArray[$i].' id='.$valuesArray[$i];
if(in_array($valuesArray[$i], $selectedOption)){
$returnString.=' checked="checked" ';
}
$returnString.=' />  <label>'.$labelsArray[$i].'</label>';
}
}
if ($fieldType === 'radio') {
for ($i=0;$i<count($labelsArray);$i++) {
$returnString.='  <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'); ?>
最初のパラメータはチェックボックスフィールドまたはラジオフィールドの名前で、どちらの場合もすべてのオプションで常に同じになります。 2番目はラベルの配列、3番目は選択されたオプションで、フォームの読み込み中にチェックされたオプションが表示されます。 4番目は、「チェックボックス」または「ラジオ」の文字列となるフィールドのタイプです。 5番目は、値の配列です。存在する場合、ラベルの順序と同じ順序でラベルの値が含まれます。存在しない場合、labels配列はvalues配列として認識されます。
_//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'])
を試してください。その中の値を見るために。
以下は、ページに送信される配列変数を処理するための一般的なルーチンであり、通常の名前/値変数の間に配置されています。
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