douyunhuan9886 2018-12-03 19:25
浏览 139
已采纳

PHP INSERT INTO MySQL无法正常工作,没有给出错误

I am currently trying to execute an INSERT INTO when a search button is clicked. Eventually I'd like to submit the search term into the database, however I'm currently just trying to submit a simple string to ensure the initial INSERT INTO works correctly, which it currently doesn't.

I have the following:

<form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
    <input type="search" name="search" id="results" placeholder="Enter search">
    <input type="submit" name="submit" class="frstBtn" value="searchterm"><br>
</form>

<?php
        $searchterm = "";
    ?>
<?php
        if(isset($_POST['submit']))
        {
            $sql = "INSERT INTO tableName (variableName) VALUES ('test')";
            $results = mysqli_query($conn,$sql) or die(mysqli_error());
        }
        ?>

The latter php function, search, works perfectly fine, but the former function including the INSERT INTO does not.

Here is the table itself in phpmyadmin.

I have successfully manually copied and pasted the actual INSERT INTO statement into the actual database and it has worked fine, so I know the issue isn't with the statement. Any help is much appreciated. Thanks.

  • 写回答

1条回答 默认 最新

  • dpqmu84646 2018-12-03 20:01
    关注

    Since the searchTerm column is defined as PRIMARY, I’m ready to bet that you are trying to insert the same value twice and you don't have enabled the error_reporting. To find out exactly what the problem is, first of all enable all errors by adding the following at the beginning of your script:

    ini_set('error_reporting', -1);
    ini_set('display_errors', 1);
    

    Also, note that you must use mysqli_error($conn) instead of mysqli_error().

    By the way, to ignore errors when inserting unique values, use:

    INSERT IGNORE INTO searchHistory(searchTerm) VALUES ('test')
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 MATLAB动图的问题
  • ¥15 求差集那个函数有问题,有无佬可以解决
  • ¥15 【提问】基于Invest的水源涵养
  • ¥20 微信网友居然可以通过vx号找到我绑的手机号
  • ¥15 寻一个支付宝扫码远程授权登录的软件助手app
  • ¥15 解riccati方程组
  • ¥15 display:none;样式在嵌套结构中的已设置了display样式的元素上不起作用?
  • ¥15 使用rabbitMQ 消息队列作为url源进行多线程爬取时,总有几个url没有处理的问题。
  • ¥15 Ubuntu在安装序列比对软件STAR时出现报错如何解决
  • ¥50 树莓派安卓APK系统签名