第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

我無(wú)法在 php 中獲取選擇框的多個(gè)選定值

我無(wú)法在 php 中獲取選擇框的多個(gè)選定值

PHP
慕姐4208626 2023-04-15 17:02:35
因此,我有一個(gè) HTML/PHP 表單,它有一個(gè)選擇列表框,您可以從中選擇多個(gè)值,因?yàn)樗亩鄠€(gè)屬性設(shè)置為多個(gè)??紤]表單方法是“POST”。但是當(dāng)我點(diǎn)擊 SUBMIT 時(shí),列表框只保存了一個(gè)值(具體來(lái)說(shuō)是最后選擇的值)。我不知道為什么。這是我的代碼的一部分:    <?php    if(isset($_POST['submitSave'])) {    // Disable errors due to empty xml files        error_reporting(E_ALL & ~E_WARNING);        $domDoc = new DOMDocument('1.0', 'UTF-8');        $domDoc->preserveWhiteSpace = false;        $domDoc->formatOutput = true;        $domDoc->encoding = 'UTF-8';        $domDoc->load('./data/expression.xml');        $xpath = new DOMXpath($domDoc);        if($domDoc->getElementsByTagName('expression')->length>0){            // If we already have expression tag defined            $expression = $domDoc->getElementsByTagName('expression')[0];        }else{            // If we don't have any expression tag, i.e. file is empty            $expression = $domDoc->createElement('expression');        }    $vocabulario = $domDoc->createElement('vocabulario');    $vocabulario->setAttribute('word', $_POST['word']);    $classe = $domDoc->createElement('classe', $_POST['classe']);    $domDoc->appendChild($expression);    $expression->appendChild($vocabulario);    $vocabulario->appendChild($classe);    file_put_contents('./data/expression.xml', $domDoc->saveXML());    header('location:index.php');}?><form method="post"><div class="col-75">  <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>  <script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>  <link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.css" rel="stylesheet" />  <select name="classe[]" multiple="multiple">    <option value="| adjective |">adjective</option>    <option value="| adverb |">adverb</option>    <option value="| noun |">noun</option>    <option value="| verb |">verb</option>  </select>  <script type="text/javascript">    var s2 = $("#classe").select2({      placeholder: "Select",      tags: true    });  </script></div>
查看完整描述

1 回答

?
慕標(biāo)琳琳

TA貢獻(xiàn)1830條經(jīng)驗(yàn) 獲得超9個(gè)贊

該代碼適合我:


/home/vagrant/foo/index.php:3:

array (size=2)

? 'classe' =>?

? ? array (size=2)

? ? ? 0 => string '| adjective |' (length=13)

? ? ? 1 => string '| adverb |' (length=10)

? 'submitSave' => string 'Save' (length=4)

在 PHP 中有一些特殊的配置?


我的測(cè)試:


<?php


var_dump($_POST);


?>

<form method="POST">

? ? ?<div class="col-75">

? ? <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>

<link rel="stylesheet"/>

? ? <select id="classe" name="classe[]" multiple name="event_type[]" class="form-control" required>

? <option value="| adjective |">adjective</option>

? <option value="| adverb |">adverb</option>

? <option value="| noun |">noun</option>

? <option value="| verb |">verb</option>

</select>

<script type="text/javascript">

? ? ? ? var s2 = $("#classe").select2({

? ? placeholder: "Select",

? ? tags: true

});



? ? </script>

</div>

<div class="row">


? ? ? ? ? ? <td><input type="submit" value="Save" name="submitSave"></td>

? ? </div>??

</form>

編輯:


當(dāng)你在 PHP 中接收數(shù)組數(shù)據(jù)時(shí),在你的情況下:


<select name="classes[]" >

PHP var$_POST['classes']不是$_POST['classes[]'],它是一個(gè)數(shù)組,如果你想將它用作字符串,你必須使用implode


查看完整回答
反對(duì) 回復(fù) 2023-04-15
  • 1 回答
  • 0 關(guān)注
  • 149 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)