2014-04-24 34 views
0

我從bootswatch的流明主題...一切似乎工作正常,除了我的表單從不提交任何數據...它進入動作頁面,但從來沒有發送任何數據.. ..他是完整的代碼...Bootswatch主題不提交表單數據

<!DOCTYPE html> 
<html> 
<title>Some Title 
</title> 
<link rel="stylesheet" type="text/css" href="bootstrap.css"> 
<body> 

<div class="container"> 
     <div class="row"> 
      <div class="col-lg-12"> 
      <div class="page-header"> 
       <h1 id="container">Some Heading</h1> 
      </div> 
      <div class="bs-component"> 
       <div class="jumbotron"> 
       <h1>Incident Management System</h1> 
       <p> Some heading</p> 
       <p><a class="btn btn-primary btn-lg">Learn more</a></p> 
       </div> 
      </div> 
      </div> 
     </div> 
</div> 
<div class="container"> 
      <div class="row"> 
      <div class="col-lg-8"> 
      <div class="panel panel-success"> 
    <div class="panel-heading"> 
    <h3 class="panel-title">Submit a ticket</h3> 
    </div> 
    <div class="panel-body"> 
<form class="form-horizontal" id="insertForm" method="post" action="addincident.php"> 
    <fieldset> 
    <legend>We need few details!</legend> 
    <div class="form-group"> 
     <label for="inputUserName" class="col-lg-2 control-label">Username</label> 
     <div class="col-lg-10"> 
     <input type="text" class="form-control" id="inputUserName" placeholder="Enter your username"> 
     </div> 
    </div> 
    <div class="form-group"> 
     <label for="inputstudentID" class="col-lg-2 control-label">Student ID</label> 
     <div class="col-lg-10"> 
     <input type="text" class="form-control" id="inputStudentID" placeholder="Enter your Student ID"> 
     </div> 
    </div> 
    <div class="form-group"> 
     <label for="inputStudentEmail" class="col-lg-2 control-label">Student EMail</label> 
     <div class="col-lg-10"> 
     <input type="text" class="form-control" id="inputStudentEMail" placeholder="Enter your Student Email ID"> 
     </div> 
    </div> 
     <div class="form-group"> 
     <label for="selectRoomNo" class="col-lg-2 control-label">Room Number</label> 
     <div class="col-lg-10"> 
     <select class="form-control" id="selectRoomNo"> 
      <option>S114D</option> 
      <option>S118B</option> 
      <option>S118E</option> 
      <option>S120</option> 
      <option>S114B</option> 
     </select> 
     </div> 
    </div> 
    <div class="form-group"> 
     <label for="textAreaRoomPosition" class="col-lg-2 control-label">Location of machine</label> 
     <div class="col-lg-10"> 
     <textarea class="form-control" rows="3" id="textAreaRoomPosition"></textarea> 
     <span class="help-block">Explain to the best of your knowledge the location of the issue in the lab.</span> 
     </div> 
    </div> 
    <div class="form-group"> 
     <label for="textAreaRoomPosition" class="col-lg-2 control-label">Issue\Incident</label> 
     <div class="col-lg-10"> 
     <textarea class="form-control" rows="3" id="textAreaRoomPosition"></textarea> 
     <span class="help-block">Explain to the best of your knowledge the issue you are facing. Try to be as detailed as possible.</span> 
     </div> 
    </div> 
    <div class="form-group"> 
     <div class="col-lg-10 col-lg-offset-2"> 
     <button class="btn btn-default">Cancel</button> 
     <button type="submit" class="btn btn-primary">Submit</button> 
     </div> 
    </div> 
    </fieldset> 
</form> 
    </div> 
</div> 
</div> 
      <div class="col-lg-4"> 
      <div class="panel panel-info"> 
    <div class="panel-heading"> 
    <h3 class="panel-title">Information</h3> 
    </div> 
    <div class="panel-body"> 
    Upon recieving the ticket, we will assign it to a designated technician who will then solve the case. You can view the solution of the incident once it is posted. 
    </div> 
</div> 
</div> 
</div> 
</div> 
</body> 
</html> 
+0

不該你的名字與參數名的投入?而不是id =「inputUserName」,寫入name =「inputUserName」,或者你期望的那個POST – Matheus

+0

我知道我在做一些愚蠢的事情!謝謝! –

+0

沒問題^^要回答這個問題 – Matheus

回答

1

它缺少「name」屬性;

改變這樣的:

<input type="text" id="inputUserName"> 

到這樣的事情:

<input type="text" name="inputUserName" id="inputUserName">