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')
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染
  • ¥15 CVRP 图论 物流运输优化
  • ¥15 Tableau online 嵌入ppt失败
  • ¥100 支付宝网页转账系统不识别账号
  • ¥15 基于单片机的靶位控制系统
  • ¥15 真我手机蓝牙传输进度消息被关闭了,怎么打开?(关键词-消息通知)
  • ¥15 装 pytorch 的时候出了好多问题,遇到这种情况怎么处理?
  • ¥20 IOS游览器某宝手机网页版自动立即购买JavaScript脚本
  • ¥15 手机接入宽带网线,如何释放宽带全部速度