我正在为我的网络应用程序使用 PHP、HTML 和 Javascript。现在我对以下代码有一个小问题。
$e=$_POST['users']; //$e should have either employee_id or a string "All"
现在根据这个值,我必须将 HTML 按钮重定向到特定页面。就我而言
if $e=="employee_id(or may be you could say that $e!="All")" then redirect the page to salary_report.php
和if $e=="All" then the page should redirect to salary_report_combined.php
我当前的按钮代码如下:
<input type="button" class="btn btn-primary" id="leavere" name="leavere" value="Back to Salary Report" onclick="location.replace('salary_report.php')"></input>
所以目前它只重定向到salary_report.php 文件。我的问题是我应该如何应用基于 PHP 变量值的条件并执行 HTML 代码?现在你能帮我解决这个问题吗?提前谢谢。