显示数据库

时间:2017-04-12 22:39:05

标签: php html phpmyadmin

我想要做的是当用户点击提交时,数据会输入到数据库中,它会将我重定向到显示用户提交内容的感谢页面。

代码段:html代码& php代码:

   <form action="ThankYouReport.html" method="post"           
         enctype="multipart/form-data">  
    <div> 
        <div class="container">

            <label><input 
              type="checkbox" name="check[]" value="Beans">Beans</label>

    <label><input type="checkbox" name="check[]" value="Apple" >  
        Apple</label>
   </div>
   </form>
  <?php  
  require('config.php');
  if(isset($_POST['sub']))  
  {    
      $checkbox1=$_POST['check'];  
      $chk="";  
      foreach($checkbox1 as $chk1)  
         {  
            $chk .= $chk1.",";  
         }

      mysql_query("INSERT INTO `list` (`checked1`) VALUES ( ','$chk')") or           
            die(mysql_error());

      }  
  ?>  

我环顾四周,看到你必须改变表格动作,我这样做但是由于某种原因我的数据不会进入我的数据库。

我如何将数据显示到另一页。

我知道这个网站上有很多帖子,但没有一个能帮助我。

1 个答案:

答案 0 :(得分:0)

试试这个,看看其中的评论:

<?php
session_start(); // always do this at the very top of your script
require('config.php');
if (isset($_POST['sub'])) {

    $chk = implode(',',$_POST['check']); // shorter than using foreach

    $sql = "INSERT INTO `list` (`checked1`) VALUES ('{$chk}')"; // just a way of storing a query to a variable

    if(mysql_query($sql)) {

        $_SESSION['success_msg'] = 'Successfully added items '.$chk; // store a message or whatever into a session variable
        // FYI if you wrap a string with single quotes, you cannot use a variable within like in above query string, but have to be concatenated using a dot (.)
        header('Location: http://www.example.com/ThankYouReport.html'); // redirect on success
    } else {
        die('Could not insert query'); // or print this message
    }

}
?>

<form method="post" enctype="multipart/form-data"><!-- remove action attribute or use name of script this is in. -->
    <div class="container">
        <label><input type="checkbox" name="check[]" value="Beans"> Beans</label>
        <label><input type="checkbox" name="check[]" value="Apple"> Apple</label>
    </div>
</form>

编辑(根据评论)

如果您想将数据从一个脚本传输到另一个脚本,特别是对于简单的感谢页面或类似内容,您可以使用php会话。您需要将感谢页面转换为PHP脚本,如下所示:

thanks.php

<?php
session_start(); 
?>
<div>
<?php echo $_SESSION['success_msg'];?>
</div>