示例php eclipse luna项目

时间:2014-12-04 07:59:36

标签: php html eclipse

我创建了一个名为Small App的新php项目,其中有一个文件,index.html是一个登录页面:

 <!DOCTYPE html>
 <html>
 <head>
   <meta charset="ISO-8859-1">
   <title>Log In here</title>
   </head>
  <body>
 <form  action="loggedin.html" method="post" enctype="multipart/form-data" name="form-login">
    <table>
    </tbody>          
       <tr>
         <td valign="top"> 
           <label for="name">UserName</label> 
         </td>                   
         <td valign="top"> 
           <input required placeholder="username" type="text" name="username"/>
         </td> 
       </tr>
       <tr>
         <td valign="top">
            <label for="password">Password</label>
         </td>              
         <td valign="top"> 
            <input required placeholder="password" type="password" name="password"/>
         </td> 
       </tr>
       <tr>
         <td valign="top">
            <label for="remember">Remember Me</label>               
         </td>
         <td>
            <input type="checkbox" name="remember" value="yes">            
         </td>                                                                                                                                                  
       <tr>
          <td colspan="2" style="text-align:center">
            <input type="submit" value="Submit">   
          </td>
       </tr>
       </table>
   </form>
</body>
</html>

当我点击运行时,如何设置eclipe以显示此信息? 我对这个全新了

当我点击运行时,我得到: enter image description here

0 个答案:

没有答案
相关问题