我想在我的login.php中写一个html表单并在login.php本身提交。所以如何在这个php文件中写入html?如果我写了标签就会显示错误。
答案 0 :(得分:1)
请务必首先使用以下扩展名命名您的文件:.php
,以便服务器可以解析代码。
然后,在您的HTML
代码之前放置处理表单的PHP代码。
写下您的HTML
表单。
最后,如果您希望在代表提交表单的情况下执行PHP代码,请执行以下操作:
<?php
if(!empty($_POST)) // which is the same as doing if($_POST); be sure not to use isset() function as $_POST variable is always set
{
// do the form processing
}
?>
<html>
<!-- your HTML markup -->
<form action="" method="post"> <!-- << leave action attribute blank to submit the form to the very same page -->
<!-- your form -->
</form>
</html>
答案 1 :(得分:0)
<?php
// php code here
?>
html code here
<?php
// more php code here
?>
more html code here
如果您打算在文件中的任何位置使用php代码,请使用.php文件扩展名。