国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Home php教程 php手冊 ThinkPHP簡單網(wǎng)站后臺

ThinkPHP簡單網(wǎng)站后臺

Jun 06, 2016 pm 07:36 PM
thinkphp Backstage Simple website

初學(xué)ThinkPHP,部署步驟: ckeditor需要自行下載,對應(yīng)目錄thinkphp-ozgweb/Public/simple/js/ckeditor thinkphp(完整版)需要自行下載,然后把ThinkPHP復(fù)制到本網(wǎng)站的根目錄,對應(yīng)目錄thinkphp-ozgweb/ThinkPHP 后臺入口:thinkphp-ozgweb/simple/admin/ind

初學(xué)ThinkPHP,部署步驟:

ckeditor需要自行下載,對應(yīng)目錄thinkphp-ozgweb/Public/simple/js/ckeditor

thinkphp(完整版)需要自行下載,然后把ThinkPHP復(fù)制到本網(wǎng)站的根目錄,對應(yīng)目錄thinkphp-ozgweb/ThinkPHP

后臺入口:thinkphp-ozgweb/simple/admin/index

后臺用戶密碼都是admin。暫無前臺。


下載地址:https://github.com/ouzhigang/thinkphp-ozgweb
PHP ThinkPHP jQuery
<?php
return array(
"web_global_title" => "ozgweb",
"page_size" => 16,
//后臺菜單,只支持3級
"admin_menu_list" => [
array(
"id" => 1,
"name" => "后臺管理",
"selected" => true,
"child_menu" => array(
array(
"id" => 2,
"name" => "數(shù)據(jù)管理",
"child_menu" => array(
array(
"id" => 5,
"name" => "分類列表",
"url" => "dataclass_list.html",
"param" => "type:1", #demo type:1,id:2
),
array(
"id" => 6,
"name" => "數(shù)據(jù)列表",
"url" => "data_list.html",
"param" => "type:1",
)
)
),
array(
"id" => 3,
"name" => "區(qū)域管理",
"child_menu" => array(
array(
"id" => 7,
"name" => "區(qū)域管理1",
"url" => "art_single.html",
"param" => "id:1",
)
)
),
array(
"id" => 4,
"name" => "管理員管理",
"child_menu" => array(
array(
"id" => 8,
"name" => "修改密碼",
"url" => "admin_pwd.html",
),
array(
"id" => 9,
"name" => "管理員列表",
"url" => "admin_list.html",
)
)
)
)
)
],
'DB_TYPE' => 'pdo',
'DB_DSN' => 'sqlite:simple.sqlite3',
'DB_PREFIX' => 'simple_', // 數(shù)據(jù)庫表前綴
'DB_CHARSET' => 'utf8', // 數(shù)據(jù)庫編碼默認(rèn)采用utf8
'DB_FIELDS_CACHE' => false, // 啟用字段緩存
);
ThinkPHP簡單網(wǎng)站后臺 ThinkPHP簡單網(wǎng)站后臺
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

The easiest way to query the hard drive serial number The easiest way to query the hard drive serial number Feb 26, 2024 pm 02:24 PM

The hard disk serial number is an important identifier of the hard disk and is usually used to uniquely identify the hard disk and identify the hardware. In some cases, we may need to query the hard drive serial number, such as when installing an operating system, finding the correct device driver, or performing hard drive repairs. This article will introduce some simple methods to help you check the hard drive serial number. Method 1: Use Windows Command Prompt to open the command prompt. In Windows system, press Win+R keys, enter "cmd" and press Enter key to open the command

Is there any website for learning C language? Is there any website for learning C language? Jan 30, 2024 pm 02:38 PM

Websites for learning C language: 1. C Language Chinese Website; 2. Rookie Tutorial; 3. C Language Forum; 4. C Language Empire; 5. Script House; 6. Tianji.com; 7. Red and Black Alliance; 8, 51 Self-study network; 9. Likou; 10. C Programming. Detailed introduction: 1. C language Chinese website, which is a website dedicated to providing C language learning materials for beginners. It is rich in content, including basic grammar, pointers, arrays, functions, structures and other modules; 2. Rookie tutorials, This is a comprehensive programming learning website and more.

Discuz background login problem solution revealed Discuz background login problem solution revealed Mar 03, 2024 am 08:57 AM

The solution to the Discuz background login problem is revealed. Specific code examples are needed. With the rapid development of the Internet, website construction has become more and more common, and Discuz, as a commonly used forum website building system, has been favored by many webmasters. However, precisely because of its powerful functions, sometimes we encounter some problems when using Discuz, such as background login problems. Today, we will reveal the solution to the Discuz background login problem and provide specific code examples. We hope to help those in need.

How to run thinkphp project How to run thinkphp project Apr 09, 2024 pm 05:33 PM

To run the ThinkPHP project, you need to: install Composer; use Composer to create the project; enter the project directory and execute php bin/console serve; visit http://localhost:8000 to view the welcome page.

There are several versions of thinkphp There are several versions of thinkphp Apr 09, 2024 pm 06:09 PM

ThinkPHP has multiple versions designed for different PHP versions. Major versions include 3.2, 5.0, 5.1, and 6.0, while minor versions are used to fix bugs and provide new features. The latest stable version is ThinkPHP 6.0.16. When choosing a version, consider the PHP version, feature requirements, and community support. It is recommended to use the latest stable version for best performance and support.

How to run thinkphp How to run thinkphp Apr 09, 2024 pm 05:39 PM

Steps to run ThinkPHP Framework locally: Download and unzip ThinkPHP Framework to a local directory. Create a virtual host (optional) pointing to the ThinkPHP root directory. Configure database connection parameters. Start the web server. Initialize the ThinkPHP application. Access the ThinkPHP application URL and run it.

Which one is better, laravel or thinkphp? Which one is better, laravel or thinkphp? Apr 09, 2024 pm 03:18 PM

Performance comparison of Laravel and ThinkPHP frameworks: ThinkPHP generally performs better than Laravel, focusing on optimization and caching. Laravel performs well, but for complex applications, ThinkPHP may be a better fit.

Are you worried about WordPress backend garbled code? Try these solutions Are you worried about WordPress backend garbled code? Try these solutions Mar 05, 2024 pm 09:27 PM

Are you worried about WordPress backend garbled code? Try these solutions, specific code examples are required. With the widespread application of WordPress in website construction, many users may encounter the problem of garbled code in the WordPress backend. This kind of problem will cause the background management interface to display garbled characters, causing great trouble to users. This article will introduce some common solutions to help users solve the trouble of garbled characters in the WordPress backend. Modify the wp-config.php file and open wp-config.

See all articles