Home > Backend Development > PHP Tutorial > 这个有关问题出在那里

这个有关问题出在那里

WBOY
Release: 2016-06-13 11:52:19
Original
912 people have browsed it

这个问题出在那里?

<body><br /><form action="index.php" method="post"><br />输入A:<input type="text" name="c"/><br><br />输入B:<input type="text" name="d"/><br /><input type="submit" value="Submit"/><br /></form><br /><?php<br />	function jisuan(&$a,&$b){<br />		$c=$a+$b;<br />		echo 'a+b='.$c."<br/>";<br />	}<br />	if(isset($_POST['c']) && isset($_POST['d']))<br />		{<br />			$x=$_POST['c'];<br />			$y=$_POST['d'];<br />			jisuan($x,$y);<br />		}<br />	else <br />		echo "结果为0!";<br />?><br /></body>
Copy after login


一直提示没有定义 c 和 d。是什么原因?

------解决方案--------------------
程序正常啊 没有你说的错误
------解决方案--------------------
没有发现有什么错误。请完整贴出代码和出错信息。
------解决方案--------------------
程序是正常的。
------解决方案--------------------
<?php<br />    function jisuan(&$a,&$b){<br />        $c=$a+$b;<br />        echo 'a+b='.$c."<br/>";<br />    }<br />    if(isset($_POST['c']) && isset($_POST['d']))<br />        {<br />            $x=$_POST['c'];<br />            $y=$_POST['d'];<br />            jisuan($x,$y);<br />        }<br />    else <br />        echo "结果为0!";<br />?>
Copy after login


新建一个index.php 文件 把上面的文件 剪切里面 ,运行 HTML 页面
------解决方案--------------------

引用:
Quote: 引用:

notice可以设置忽略的,不影响运行

如何设置?

error_reporting(0);
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