Heim  >  Artikel  >  Backend-Entwicklung  >  php获取html 文本框的值 两个文本框,出有关问题了

php获取html 文本框的值 两个文本框,出有关问题了

WBOY
WBOYOriginal
2016-06-13 11:17:48791Durchsuche

php获取html 文本框的值 两个文本框,出问题了
下面是我做的一个日历,输入查询的界面:
==================================================
//以下为程序


查询日历


 

  
   
     
     
     
   
   
     
      
   
  
输入要查询的年份(1900年之后):
输入要查询的月份:

  


  
  
  


 




====================================================================================
我还定义了另一个php文件来获取 year 和 month  但是运行出来它把month的值覆盖到了year上,不过不给month赋值,相当于我只定义了name="year" 的文本框,而且取值部分变成了name="month"文本框的输入。当我把month文本框的 type 改成password 结果可以运行。不过输入的时候月份成了星星...所以问下,是什么问题?
php html
------解决方案--------------------
想帮你,不过看不懂你说的意思,绕口了
------解决方案--------------------
不知道你遇到了什么问题?
print_r($_POST); 看看
------解决方案--------------------
echo $_POST['year'].'=='.$_POST['month'];

我代码运行了一下,输出来的东西没看来有什么问题,年和月都可以显示啊
------解决方案--------------------
加个id试试?

另,
建议改为
------解决方案--------------------
$year=$_POST["year"];
$month=$_POST["month"];  //$_POST 大写
------解决方案--------------------
$year=$_POST["year"];
$month=$_POST{"month"];
echo $year;
echo $month;
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