如何从另一个.php文件获取值帮助我解决这个问题:
<html>
<head>
</head>
<body>
<form name='answer' action="file2.php" method="post">
<input type="text" name="what">
<input type="submit" value="Login">
</form>
<div><?php echo $answer; ?></div>
</body>
</html>
file2.php文件的代码如下:
<?php
if ($_POST['what']==animal){
$answer="dog";
}else{
$answer= "not animal";
}
我想知道如何通过按钮获取变量$ answer的值,那么我应该在该行中添加什么:
答案 0 :(得分:0)
使用require_once()
在您的php文件中包含file2.php,然后在您的文件中,您可以访问file2.php中的变量。
require_once("path of file2.php");
echo $answer;
答案 1 :(得分:0)
只需使用requiere
<?php require 'file2.php'; ?>