如何从Bootstrap Modal表单中获取值?

时间:2015-06-13 12:01:18

标签: php html css twitter-bootstrap

我使用了bootstrap模式形式,我试图以这种方式使用'get'方法获取值,但它不起作用。 任何人都可以告诉我如何使用AJAX。 如果没有AJAX就可以做到,那对我来说非常有帮助。

<div class='modal fade' id='editButtonModal' role='dialog'>
<div class='modal-dialog'>

  <div class='modal-content' >

      <div class='modal-header'>
        <button type='button' class='close' data-dismiss='modal'>&times;</button>
        <h4 style="color:red; text-align:center">My Article</h4>
      </div>

      <div class='modal-body'>

          <form role='form_edit' action="addArticle.php" method="get">

              <div class="form-group">
                <label for="Title" >Title</label>
                <input type="text"  class="form-control" id="titleId" name='tit' placeholder="Enter the title of the article">
              </div>

              <div class="form-group">
                <label for="ArticleContent">Your Thoughts!</label>
                <textarea class="form-control" rows='10' id="artcleContentId"></textarea>
              </div>

              <button type="submit" class="btn btn-default btn-success btn-block" >Submit</button>

          </form>

      </div>

  </div>

</div>
</div>

Php文件:

echo "hello world"
echo $_GET['tit']

1 个答案:

答案 0 :(得分:0)

您的PHP文件中存在错误。你丢了分号。

应该是:

echo "hello world";
echo $_GET['tit'];