这里我们使用PhpMyadmin对Mysql数据库 Gui管理。
使用版本:
apache_2.2.11-win32-x86-no_ssl (msi安装)
mysql-essential-5.1.23-rc-win32(msi安装)
php-5.2.8-Win32
phpMyAdmin-3.0.0-all-languages
1、Apache
1.1、安装Apache
安装Apache时跟其他软件相同,Domain Name 处是可以随便随便填写,以后挂网时可以通过httpd.conf修改
1.2、配置Apache
1.2.1、配置DocumentRoot //配置网站文件的根目录
DocumentRoot "F:\phpmyadmin\phpMyAdmin-3.0.0-all-languages"
注意端口问题。可以通过httpd.conf修改端口 如
Listen 80
注意:在编辑\conf\httpd.conf 配置过程中注意路径是使用"/"不是"\"
修改完成后可以通过打开localhost 或127.0.0.1验证
1.2.2、加载文Php模块 php5apache2_2.dll
LoadModule php5_module "c:/php/php5apache2_2.dll" // 指定该模块文件路径
AddType application/x-httpd-php .php // 指定 php 处理文件类型
AddType application/x-httpd-php .htm // 指定 php 处理文件类型
********************************************************************************
2、Php
PHP作为一种脚本语言容器,作为Apache的一个模块加入到Apache中。当浏览器请求一个PHP页面时,Apache就调用php模块对php源程序进行处理,并将处理的结果返回给浏览器。
2.1 安装PHP
解压php-5.2.8-Win32
解压注意目标文件夹名不能有空格、中文及非ASCII码
2.2 Php配置
2.2.1、修改doc_root 为网站文件路径(与Apache中DocumentRoot相同)
doc_root ="f:\web"
2.2.2
指定扩展模块(dll)路径为 Php解压目录中的ext,Php通过扩展模块方式实现对Mysql、mssql等的支持
extension_dir = "c:\php\ext"
2.2.3 修改扩展模块如(mysql),去掉前面注释号使其有效,修改后如下
;extension=php_bz2.dll
extension=php_curl.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_exif.dll
;extension=php_fdf.dll
extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_gmp.dll
;extension=php_ifx.dll
extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_ldap.dll
extension=php_mbstring.dll
;extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_mime_magic.dll
;extension=php_ming.dll
;extension=php_msql.dll
;extension=php_mssql.dll
extension=php_mysql.dll
extension=php_mysqli.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
;extension=php_pdo.dll
;extension=php_pdo_firebird.dll
;extension=php_pdo_mssql.dll
;extension=php_pdo_mysql.dll
;extension=php_pdo_oci.dll
;extension=php_pdo_oci8.dll
;extension=php_pdo_odbc.dll
;extension=php_pdo_pgsql.dll
;extension=php_pdo_sqlite.dll
;extension=php_pgsql.dll
;extension=php_pspell.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_soap.dll
;extension=php_sockets.dll
;extension=php_sqlite.dll
;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll
;extension=php_xsl.dll
;extension=php_zip.dll
注意:因为php非安装版所以需要分别复制php_mysql.dll、libmysql.dll、和php.ini(修改后的)到windows、windows\system32、及windows\system32两个目录
另外还需要注意以下问题:
添加系统环境变量PATH C:\php;C:\php\ext 这两个安装目录的路径
Php安装完成后可以通过以下脚本验证PHP信息
phpinfo();
?>
***********************************************************************************
3、安装Mysql
1、一路NEXT,到选择语言项时,选择BEST,及编码为utf8
2、使用MySQL Server Instance Config Wizard初始化配置时,current password 默认为空,此时产生的用户名默认为root
3、安装完全后,可以通过MySQL Command Line Client 进行检验
***********************************************************
4、安装PhpMyadmin
PhpMyadmin 通过登陆网站形式链接mysql数据库对其进行图形界面管理(GUI)
4.1安装
4.1.1、将phpmyadmin全部文件解压到网站根目录,即访问文件在根目录,方便直接使用phpadmin路径
4.1.2、修改config.sample.inc.php中验证类型为HTTP
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'http';
phpmyadmin完成后可以通过 [url]http://localhost/phpmyadmin[/url]进行测试及数据库管理

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6
Visual web development tools

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

Atom editor mac version download
The most popular open source editor

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
