gpt4 book ai didi

php - Joomla 使用插入到单独的数据库表中

转载 作者:行者123 更新时间:2023-11-30 23:04:56 24 4
gpt4 key购买 nike

$option = array();
$option['driver'] = 'mysql'; // Database driver name
$option['host'] = 'localhost'; // Database host name
$option['user'] = '*****'; // User for database authentication
$option['password'] = '********'; // Password for database authentication
$option['database'] = 'teste_dados'; // Database name
$db = JDatabase::getInstance( $option );

//创建一个新的查询对象。

$query = $db->getQuery(true);

/*//插入列。

$columns = array('id_teste','testes','time');

//插入值。

$values = array(4,'loucura3',date("h:i:s"));

//准备插入查询。

$query->insert($db->quoteName('teste1'));
$query->columns($db->quoteName($columns));
$query->values(implode(',', $values));

$query="INSERT INTO teste1('id_teste','testes','time') VALUES (4,'loucura3','".date("h:i:s")."')";

//使用我们新填充的查询对象设置查询并执行它。

$db->setQuery($query);
$db->execute();

这两个选项都给出了以下错误信息:

处理您的请求时发生错误。

您可能无法访问此页面,因为:

an out-of-date bookmark/favourite
a mistyped address
a search engine that has an out-of-date listing for this site
you have no access to this page

进入首页

首页

如果问题仍然存在,请联系本网站的系统管理员并报告以下错误。

 0 SQL=INSERT INTO teste1('id_teste','testes','time') VALUES (4,'loucura3','05:11:00') 

我见过一些类似的问题及其修复方法,但没有一个对我有用,有什么想法吗?

最佳答案

尝试在 mysql workbench 或 phpMyAdmin 中测试 sql 脚本。在列周围使用反引号而不是单引号

关于php - Joomla 使用插入到单独的数据库表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22306719/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com