我有一个工具,我必须输入一些单词,它必须进入:
$_POST['searchqueries']
.
我有多个输入形式,必须在 ['searchqueries'] 中返回,看起来像:word1、word2、word3、word4。
这就是我现在拥有的,但它只是返回数组,而不是分开的
<fieldset style="border: none;">
<label for="searchquerie1">Zoekwoord 1:</label><input type="text" id="searchquerie1" name="searchqueries[]" maxlength="256" value="" /><br>
<label for="searchquerie2">Zoekwoord 2:</label><input type="text" id="searchquerie2" name="searchqueries[]" maxlength="256" value="" /><br>
<label for="searchquerie3">Zoekwoord 3:</label><input type="text" id="searchquerie3" name="searchqueries[]" maxlength="256" value="" /><br>
<label for="searchquerie4">Zoekwoord 4:</label><input type="text" id="searchquerie4" name="searchqueries[]" maxlength="256" value="" /><br>
<input type="hidden" name="fset"/>
</fieldset>
我该怎么做才能完成这项工作
格雷茨
大卫