我想獲得函數的返回值並將其顯示爲特定的ID。PHP函數返回值爲html標記
在我Class.php我有一個函數命名登錄,它驗證,如果密碼正確/不正確
<?php
class Class
{
public function login()
{
if($_POST['password'] == Match) {
return 'Correct Password!';
} else {
return 'Incorrect password!';
}
}
}
,並在我的index.php我我有這個網站。現在我怎樣才能得到我的登錄函數的返回值在我的HTML標籤
<?php
require_once 'Class.php';
$class = new Class();
$class->login();
?>
<!DOCTYPE html>
<html>
<head>
<title>SOMETHING</title>
</head>
<body>
<form action="" method="POST">
<input type="text" name="username">
<input type="password" name="password">
<span id="check"></span> <!-- I want to put the returned value here -->
<input type="submit" value="Login">
</form>
</body>
</html>
'<?php echo $ class-> login();?>' – RiggsFolly
但是你真的應該做自己的功課 – RiggsFolly