我们最近从ASP切换到PHP,我们曾经有一个表单,其中包含一个自动字段,用于使用名为<!--#include file="XXX.inc" -->
的文件登录用户。
有没有办法用php做同样的事情?如果没有,我可以使用JavaScript或JQuery吗?
只有两个字段: 用户名 的userPassword
我们使用的代码是:
<form method="post" action="http://www.example.com" target="_self">
<!--#include file="bslogin.inc" -->
<input type="image" name="btn_login" src="../images/GoDatabase_off.jpg" alt="Go to the Database" width="125" height="38" border="0">
两者都是由.inc文件提供的。
感谢您的帮助。
答案 0 :(得分:1)
基本上,它是相同的,但您将使用以下文件包含该文件:
include('bslogin.inc');
您的HTML已
<input type="hidden" name="username" value="xxx" />
<input type="hidden" name="password" value="xxx" />
PHP在$_POST
中将其视为$_POST['username']
答案 1 :(得分:0)
是的,PHP确实有办法包含文件。这是a tutorial with example syntax。