duananyantan04633 2016-05-19 17:16
浏览 49
已采纳

在表单提交时,浏览器加载具有处理表单代码的php文件

I'm writing my first php code... I'm trying to submit a form.
I have two php files. index.php(which contains the form) and process.php(which contains the method that handles the form).
But on form submission, the browser heads to process.php, so nothing is displayed. I'm trying to echo the result in index.php .

And keep in mind this is my very first php code... :-)

This is index.php

<!DOCTYPE html>
<html>
<?php
  include 'process.php';
  $newletter1 = new newsletter();
?>
  <head>
    <meta charset="utf-8">
  <title></title>
  </head>
  <body>
    <form action="process.php" method="post">
      <input type="text" name="email" placeholder="Your Email Address..."><br><br>
      <input type="submit">
    </form>
    <h4><?php $newletter1 -> abc(); ?></h4>
  </body>
  </html>

And this is process.php

class newsletter
{

  public function abc()
  {
    if (isset($_POST["email"])) {
      $input = $_POST["email"];
      if (empty($input)) {
        echo "Please provide an email address!";
      }else{
        echo "Thanks for subscribing " . $input;
      }
    }else{
      echo "ELSE is running...";
    }
  }

}
  • 写回答

2条回答 默认 最新

  • dongqie4402 2016-05-19 18:07
    关注

    Your script process.php is just a class definition.

    A class does nothing unless it is instantiated and a method called.

    As you are including it and instantiating it in your index.php I would suggest changing your <form> tag so it runs itself, leaving href="" will do that.

    <?php
      // run this only if we are being set info by the user
      // so not when the form is first loaded.
      $to_show_later = '';
      if ($_SERVER['REQUEST_METHOD'] == 'POST' ) {
          include 'process.php';
          $newletter1 = new newsletter();
          $to_show_later = $newsletter1->abc();
      }
    ?>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8">
    <title></title>
    </head>
    <body>
        <form action="" method="post">
          <input type="text" name="email" placeholder="Your Email Address..."><br><br>
          <input type="submit">
        </form>
        <h4><?php echo $to_show_later; ?></h4>
    </body>
    </html>
    

    It's also bad practice to echo directly out of a class method, so change this so it return the data.

    class newsletter
    {
    
      public function abc()
      {
        $reply = '';
        if (isset($_POST["email"])) {
          $input = $_POST["email"];
          if (empty($input)) {
            $reply = "Please provide an email address!";
          }else{
            $reply = "Thanks for subscribing " . $input;
          }
        }else{
          $reply = "ELSE is running...";
        }
        return $reply;
      }
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题
  • ¥15 phython路径名过长报错 不知道什么问题
  • ¥15 深度学习中模型转换该怎么实现
  • ¥15 HLs设计手写数字识别程序编译通不过
  • ¥15 Stata外部命令安装问题求帮助!
  • ¥15 从键盘随机输入A-H中的一串字符串,用七段数码管方法进行绘制。提交代码及运行截图。
  • ¥15 TYPCE母转母,插入认方向
  • ¥15 如何用python向钉钉机器人发送可以放大的图片?