在表单提交上运行脚本

时间:2013-11-05 19:12:46

标签: php forms execute

我一直在寻找这个,我真的很困惑,有类似的问题,但我似乎无法让他们中的任何一个工作。如果之前已经重复过,我很抱歉。这是我的问题,我需要在表单提交上运行php脚本,而不是重定向到该页面。这是我的代码: 形式:

<form action="comments.php" method="post">
  <div id="comment-input">
    <input type="text" name="subjectField" id="subjectField" 
           placeholder="Subject (optional)">
  </div>
  <div id="comment-textarea">
    <textarea name="messageField" required id="messageField" cols="39" rows="4" 
              placeholder="Your Message (required)"></textarea>
  </div>
  <div id="comment-submit">
    <div>
      <input name="submit" type="submit" id="submit" tabindex="5" value="Post Comment"
             class="comment-submit small button green">
    </div>
  </div>
</form> 

的comments.php:

<?php   
    $fileNameHere = 'filenamehere.php';
    $hits[0] ++;

    $fileNameHereFileHandle = fopen($fileNameHere, 'a+') or die("can't open file");
    $subjectField = $_POST['subjectField'];
    $messageField = $_POST['messageField'];
    $savestring = '' . $hits[0] .'';
    fputs($fileNameHereFileHandle, $savestring);
    fclose($fileNameHereFileHandle);
?>

filenamehere.php

空。

希望这很清楚,如果可以,请帮帮我,我真的很感激。再次,谢谢。

0 个答案:

没有答案