摘要:
前端: //初始化datatablevar table3 = $('.jiaoshi_lst').DataTable({ "processing": true, "serverSide": true, "paging": true, "ordering": false, "searching": f 阅读全文
摘要:
环境准备: 使用php 8.2.9nts,添加环境变量 安装扩展: php_openssl php_zip 进入根目录:e:\www 执行安装命令: composer create-project codeigniter4/appstarter 项目根目录成功 翻译 搜索 复制 阅读全文
摘要:
创建yy类 class yy extends CI_Controller { public function __construct() { parent::__construct(); } public function fy() { echo 'home/yy'; } public functi 阅读全文
摘要:
当ci3使用PHP8.2,出现问题 An uncaught Exception was encountered Type: Error Message: Call to undefined function mysqli_init() Filename: D:\www\ci3\system\data 阅读全文
摘要:
//采用PDO连接数据库,只能捕获PDO连接数据库的错误,codeigniter自身无法捕获异常function show() { // $pdo = $this->db->connect(); //建立对数据库的连接。 $pdo = $this->db->db_pconnect(true); // 阅读全文
摘要:
$db['default'] = array( 'dsn' => "mysql:host=localhost;dbname=test;charset=utf8",//设置数据库连接字符串 'hostname' => 'localhost', 'username' => 'root', 'passwo 阅读全文
摘要:
1、创建类文件 2、构造函数中使用数组形参,接收传递参数 class Hehe { // public function __construct($config = array()) { p($config); } // // public function index() { // } funct 阅读全文
摘要:
function ddd() { try { $db = db_connect(); //创建数据库连接 $rs = $db->table('news t1')->get()->getResult(); //查询(查询结束后,不会重置数据库连接,后面的内容依然会继续执行) $data['title' 阅读全文
PHP Warning: ‘ vcruntime140.dll‘ 14.0 is not compatible with this PHP build linked with 14.16 in Unk
摘要:
借鉴:https://blog.csdn.net/weixin_42541725/article/details/110674834 翻译 搜索 复制 阅读全文
摘要:
<a href="javascript:history.go(-1)">返回上一页</a> <a href="javascript:location.reload()">刷新当前页面</a> <a href="javascript:" onclick="history.go(-2); ">返回前两页 阅读全文