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

WBOY
Release: 2016-06-13 12:51:29
Original
845 people have browsed it

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'];
Copy after login

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

另,
建议改为
------解决方案--------------------
$year=$_POST["year"];
$month=$_POST["month"];  //$_POST 大写
------解决方案--------------------
$year=$_POST["year"];
$month=$_POST{"month"];
echo $year;
echo $month;
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!