Heim >Backend-Entwicklung >PHP-Tutorial >php微信网页下拉列表value值获取问题

php微信网页下拉列表value值获取问题

WBOY
WBOYOriginal
2016-06-02 11:33:28978Durchsuche

php微信

做微信公众号,php网页post提交表单,下面是表单内下拉列表

<code> <td><select name="CateID" id="CateID"><?phpwhile ($row=mysql_fetch_array($query)){?><option value="<?php echo $row['CateID'];?>"><?php echo $row['CateName'];?></option>
<?php }?></select></td>下面是获取的$CateID=$_POST['CateID'];$add = "INSERT INTO tPayments(PaymentTime,CateID,PaymentDetail,PaymentNum,PaymentNo,ModiTime)VALUES('$PaymentTime','$CateID','$PaymentDetail','$PaymentNum','$PaymentNo',now())";mysql_query($add);echo "$CateID";</code>

在微信页面那边输出的是一个“Array”,但是用电脑浏览器的话,输出的就是一个值

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn