dsvtnz6350 2015-01-21 02:07
浏览 81
已采纳

在xampp服务器上运行的mysql中的数据表中插入/更新

            $db= mysqli_connect('localhost',$user, $pass, $dbname);

            if (!$db) {
                die("Connection failed: " . mysqli_connect_error());
            }
            $sql="Insert into 'testtable' ('Tool','Request Date') values('selenium','2015-6-6') ";

the above code is for inserting a row in sql table running on xampp.

table has 3 fields id(primary key/auto inc.),date and tool.

for some reason the the code is not working.

I am getting no particular error .

$result = mysqli_query($db,$sql);

                print_r($result);

                if ($result) {
                       echo "success";
                } else {
                       echo "failed";
                }

only "failed" in printed in console,web browser etc.

  • 写回答

2条回答 默认 最新

  • dongxiaoguang9108 2015-01-21 02:11
    关注

    You can't use single quotes to specify field or table names, you must use backticks. The correct MySQL query would be:

    Insert into `testtable` (`Tool`,`Request Date`) values('selenium','2015-6-6')
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 RHEL8.10安装文件
  • ¥25 实时时钟,测温,模拟量采集,超声波测距,四种在数码管上的显示通过独立按键S4依次切换
  • ¥50 Linq更新数据导致数据库崩溃
  • ¥15 使用vue3+springboot+elementplus开发web小项目,用easyexcel导出后台查询到的数据。postman测试下载测试成功但是浏览器不能触发下载
  • ¥15 关于#r语言#的问题:单细胞数据处理
  • ¥15 我主页资源的代码要如何导入JAVAEE里面使其可以运行
  • ¥20 如何在linux centos7中,搭建DVWA?
  • ¥20 更改手机应用的音频输入/推荐其他方案
  • ¥15 数据库 'LibraryManage' 已存在。请选择其他数据库名称。
  • ¥20 windows毛玻璃窗口缩放延时问题