PHP代码 小白

WBOY
Release: 2016-06-23 13:19:27
Original
891 people have browsed it






照书上打的代码为什么在HTML表单页面输入数值和下拉选择后经php解析后怎么数值都为0?求解


回复讨论(解决方案)

php那段。
switch( $find) 
这个$find你都没有定义,当然是0了。
在前面加一句
$find = isset($_POST['find'])? $_POST['find']: '';
switch($find)

另外建议,提问题,代码不要截图,这样不方便搜寻关键字。

其他的数值你都没有传递给php,当然什么都没有

你按我的写法,把其他变量都获取再使用就可以了
$find = isset($_POST['find'])? $_POST['find']: '';

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