|
楼主 |
发表于 2014-5-30 20:01:04
|
显示全部楼层
本帖最后由 228点六 于 2014-5-30 20:05 编辑
这张表绝对有的:CREATE TABLE IF NOT EXISTS `categories`
按照你的写法,我简单写成这样:
PHP复制代码
function get_Category($parentid){
[color=Red]$query = $this->db->query("select name,shortdesc from categories where parent =". $parentid);[/color]
return $query->result();
}
复制代码
结果还是显示1064错误,提示如下:
A Database Error Occurred Error Number: 1064
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'LED Light' at line 1
select name,shortdesc from categories where parent =LED Light
Filename: C:\wamp\www\CI\ci\system\database\DB_driver.php
Line Number: 330
是红色字体错误么?我见过有其他论坛里下载的代码这样写的:
$query = $this->db->query("select name,shortdesc from categories where parent = ?", $parentid);
这样是没有报错,但是仍然没有办法从表中调用出来对应的categories。
很不好意思耽误你的时间,我打50块钱话费给你吧,站短你的电话给我。{:soso_e183:}
|
|