【问题标题】:this is my code to insert data into database... but it doesnt get inserted into database这是我将数据插入数据库的代码......但它没有插入数据库
【发布时间】:2017-01-03 14:38:43
【问题描述】:

我想将产品详细信息插入数据库,但它也没有被添加到数据库中,我也收到此错误

"注意:会话已经开始 - 忽略 session_start() 在 C:\xampp\htdocs\regal\admin\insert_products.php 第 2 行"

<?php
session_start();
echo "WELCOME:  "."<b>". $_SESSION['user']."</br>";
  if(!isset($_SESSION['ISLOGIN'])){
      echo "<script>window.open('login.php?log=NOT AN ADMIN!!','_self')</script>";
      die;
  }
  else{
?>


<!doctype>
<?php
include("./include/db.php");
?>

<html>
  <head>
    <title>INSERT PRODUCTS</title>
    <script src="//cdn.tinymce.com/4/tinymce.min.js"></script>
  <script>tinymce.init({ selector:'textarea' });</script>
  </head>
  <body bgcolor="black">
     <form method="post" action="insert_products.php" enctype="multipart/form-data">
       <table width="830" height="600px" bgcolor="gray" align="center" border="5" style="color:white" >
            <tr >
               <th colspan="7" align="center"><h1>Insert New Posts Here!</h1></th>
            </tr>
            <tr>
               <td align="right" ><b>NAME:</b></td>
               <td><input type="text" name="name" required/></td>
            </tr>
            <tr >
               <td align="right" ><b>IMAGE:</b></td>
               <td><input type="file" name="img" required/></td>
            </tr>
            <tr>
               <td align="right" ><b>PRICE:</b></td>
               <td><input type="text" name="price" required/></td>
            </tr>
            <tr>
               <td align="right" /><b>CATEGORY:</b></td>
               <td><select name="getcat" required/>
                      <option>Select</option>


                          <?php


                         if (!$db) {
                        echo "Error: Unable to connect to MySQL.";
                        exit;
                           }

                         $q="select * from cat" ;
                         $run_cat=mysql_query($q);
                         while($rows=mysql_fetch_array($run)){
                             $catid=$rows['id'];
                             $cattit=$rows['title'];
                             echo "<option>$cattit</option>";
                         }

                      ?>
                   </select>
               </td>
            </tr>

            <tr >
               <td align="right" ><b>DESCIRPTION:</b></td>
               <td><textarea type="text" name="desc" cols="20" rows="10"></textarea></td>
            </tr>
            <tr>
                 <td align="center" colspan="7"><input type="submit" name="sub" value="Insert Product"></td>
            </tr>


       </table>
     </form>
  </body>
</html>

<?php
    if(isset($_POST['sub'])){
        $name=$_POST['name'];
        $price=$_POST['price'];
        $getcat=$_POST['getcat'];
        $desc=$_POST['desc'];
        $img=$_FILES['img']['name'];
        $imgt=$_FILES['img']['tmp_name'];
        move_uploaded_file($imgt,"pro-images/$img");

        $insert="insert into products (img,price,name,category,desc)values ('$img','$price','$name','$getcat','$desc')";

        $insert_pro=mysql_query($insert);
        if($insert_pro){
            echo "<script>alert('PRODUCT HAS BEEN UPLOADED')</script>";
            echo"<script>window.open('index.php?insertprod','_self')</script>";
        }
    }

  }
?>

【问题讨论】:

  • 会话已经开始。注释行 session_start()
  • 你在 db.php 上开始会话了吗?
  • 你已经在 db.php 页面中使用 session_start() 了吗?
  • 我尝试删除会话兄弟,但仍然没有将数据添加到数据库中
  • 不,我没有在 db.php 页面上使用 session_start()

标签: javascript php html insert


【解决方案1】:

使用脚本顶部代替 session_start(); 检查会话是否正在运行

If(session_status() === PHP_SESSION_DISABLED || PHP_SESSION_NONE ) {
    session_start();
}

如果它仍然存在。说明db.php发出的错误

【讨论】:

    猜你喜欢
    • 2016-02-21
    • 1970-01-01
    • 1970-01-01
    • 2017-11-02
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多