0

我一直在寻找这个并且真的很困惑,有类似的问题,但我似乎无法让它们中的任何一个起作用。因此,如果以前重复过这种情况,我深表歉意。这是我的问题,我需要在表单提交时运行 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> 

评论.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);
?>

文件名here.php

空的。

希望这很清楚,如果可以,请帮助我,我将非常感激。再次谢谢你。

4

0 回答 0