我尝试查询MySQL数据库中的一系列行,但只要值是URL,就不会显示。
([Handle] => air-gap-parts
[productID] => 0000000018
[active] => 1
[tag] => 0
[ImageSrc] =>)
ImageSrc应该生成图片的URL,但每次都不返回任何内容。我正在使用CodeIgniter,我想知道它是否与我的.htaccess文件有关?
.htaccess文件:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
<Files "index.php">
AcceptPathInfo On
</Files>
CodeIgniter模型查询:
function get_product_pics($handle)<br />
{
$this->db->where('handle', $handle);
$query = $this->db->get('products_test_db');
return $query->result();
}
非常感谢你的帮助!
答案 0 :(得分:0)
我的数据库中的条目一直是NULL。下次,检查我实际上在哪个数据库工作。