你如何在php中添加一个html表单?我必须检查 isset 的条件,即是否设置了会话,然后才应该显示表单。由于“”,ECHO 语句不起作用
<pre>
<form action="index.php" method="post">
<br />
First Name: Last Name:<br/>
<input type="text" name="firstname" placeholder ="First Name"/>
<input type="text" name="lastname" placeholder ="Last Name"/><br />
Email-id:<br />
<input type="text" name="email-id" placeholder ="Your Email-id"/><br />
Password:<br />
<input type="password" name="password" placeholder ="Your Password"/>
<br />
Re-enter Password:<br />
<input type="password" name="password1" placeholder ="Re-enter Password"/>
<br /></form><pre>