您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關利用php腳本怎么接收form表單傳遞的數組數據,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
通過數組傳遞表單數據,可以保存數據之間的業務屬性關系,比如有很多Student,每隔Student都有姓名、年齡、性別、愛好等表單信息。提交表單后還需要針對每個student進行處理或者保存。這樣肯定需要為每個student的這些屬性表單建立起關聯關系,一種方式是根據屬性表單的name上加特殊標記進行識別,但是數組傳遞表單就能使表單數據更結構化。
例子如下:
<input type="hidden" name="msginfo[name][]" value="張三"/> <input type="hidden" name="msginfo[phonenum][]" value="111111111"/> <input type="hidden" name="msginfo[name][]" value="李四"/> <input type="hidden" name="msginfo[phonenum][]" value="222222222"/>
php代碼:
<?php $msgInfos = $_POST['msginfo']; $phoneNums = $msgInfos['name']; // 為array(-=>張三,1=>李四) $phoneNums = $msgInfos['phonenum']; // 為array(0=>111111111,1=>222222222)
例一
<?php if(isset($_POST['submit'])){ $users = $_POST['user']; foreach($users as $key=>$val){ echo 'user ',$key,' = ',$val,'<br />'; } } ?> <form method="post"> zhangsan <input type="text" name="user[zhangsan]" value="0" /><br /> lisi <input type="text" name="user[lisi]" value="1" /><br /> wangwu <input type="text" name="user[wangwu]" value="2" /><br /> zhaoliu <input type="text" name="user[zhaoliu]" value="3" /><br /> <input type="submit" name="submit" value="提交" /> </form>
例二
<form method="post"> <? for($i=0;$i<10;$i++){ ?> <input type="checkbox" name="interests[]" value="<?=$i?>">test<?=$i?><br> <? } ?> <input type="submit"> </form> <?php <code class="php keyword">if(isset($_POST)){ foreach($_POST as $key => $val){ if(is_array($val)){ foreach($val as $v2){ echo "$v2<br>"; } } } } ?> </code>
上述就是小編為大家分享的利用php腳本怎么接收form表單傳遞的數組數據了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。