gpt4 book ai didi

mysql - Codeigniter 404 页面未找到

转载 作者:行者123 更新时间:2023-11-29 11:01:32 26 4
gpt4 key购买 nike

我是 Codeigniter 的新手。

我的数据库 Controller

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Dbview extends CI_Controller{
public function index()
//standard SQL Query
$sql = "SELECT * FROM 'news'",
$data['query_sql'] = $this->db->query($sql);
//active record query
$data['query_ar'] = $this->db->get('news');
//load view
$this->load->view('dbview',$data);}
?>

View 中的我的 dbview

数据库测试

<br />
<b>Standard SQL Query</b> <pre><?php print_r($query_sql->result_array()); ?>></pre>
<br />
<b>Active Record Query</b> <pre><?php print_r($query_ar->result_array()); ?></pre>

我在phpmyadmin中设置了数据库,并将数据库信息放入config/database中当我尝试打开浏览器http://localhost/WeatherFinder/index.php/dbview时什么都没有打开。出了什么问题或者我还有什么没做的?谢谢

最佳答案

我想我可能已经发现了你的问题。正如下面的代码中所指出和更正的那样,您的索引函数缺少左大括号。

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Dbview extends CI_Controller{

public function index(){ // --- This opening brace missing maybe the issue.

//standard SQL Query
$sql = "SELECT * FROM 'news'",
$data['query_sql'] = $this->db->query($sql);

//active record query
$data['query_ar'] = $this->db->get('news');

//load view
$this->load->view('dbview',$data);
}
}

您不需要也不建议使用 ?> 关闭 Controller 。 .

关于mysql - Codeigniter 404 页面未找到,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42145179/

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