apache|mysql|技巧|原创
我用的版本很新...
apache为apache_1.3.26-win32-x86-no_src.exe(在官方里面DOWN的)
php为php4.23(www.pconline.com里面有)
mysql为3.23在PCONLINE.COM里面都有..就只有APACHE.EXE(PCONLINE为ZIP要慢慢搞我不喜欢所以去了官方那里DOWN)www.apache.org(en版本)
APACHE安装到c:\(就是选择文件夹的时候选择的)
PHP为C:\PHP4MYSQL为C:\MYSQL
---------------------------------安装系统WIN98/WINME通过...
说明:"[]"中括号里面的是文件名...表示要修改或要复制过去另个地方的...
[php.ini]
把php-dist.ini复制到c:\windows把名字改为php.ini
编辑里面找到extension_dir = ./
把./改成c:\windows\system或把下面的直接覆盖那行
extension_dir = c:\windows\system
----------------------------------------
apache安装
----------------------------------------
安装的时候在需要您填入信息的时候您所填的最好是这样:
Network Domain 为 root
Server Name 为 localhost
Administartor''s Email 填您的EMAIL地址
[httpd.conf]
编辑httpd.conf搜索DocumentRoot(注意大小写)把""里面改成你想把站点放的地方...是绝对的...
DocumentRoot "d:/php"
我的是放在"d:\php"网站目录...您想改个地方可以自由修改.或直接放在c:\Apache\htdocs里面那就随便你咯...不过肯定要提醒的是在最后的文件夹里面不能为有"/"这个符号.不然就只能够不断判断到出错...
在最后面把下面的复制的过去。。。如果您的目录不是c:\php4那么就只要修改"x(您的PHP文件所在的地方):/目录/"就可以了...其他都的都不可以修改...否则会搞到服务器解释为下载*.PHP
ScriptAlias /php/ "c:/php4/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"
mysql......
安装好以后用"我的电脑"找回您所安装的地方...一般来说都是c:\mysql...
打开c:\mysql\bin\winmysqladmin.exe
在第一次驱动的时候它会要您输入用户名和密码,建议您最好是把用户名为root(注意大小写),密码就随便了...只要您能够记得!不记得就查看c:\windows\my.ini里面password=密码
然后关闭mysql
把目录里面的my-huge.cnf复制到c:\下并改为my.cnf
然后运行c:\mysql\bin\mysqld.exe
再把目录里面的my-huge.cnf复制到C:\下并改为my.cnf
然后再运行c:\mysql\bin\mysqld.exe
重新启动电脑打开winmysqladmin选择"start Check"看看下面的信息...如果是
There is a my.ini file.............yes
Verifying the my.ini keys
MySQL server path keyi........OK
datadir...............................OK
basedir...............................OK
如果是就恭喜你了...您已经可以完全连接MYSQL了...
-----------------------
最后当然是测试啦!
因为我的网站目录是在D:\PHP\,所以我在里面建立了一个info.php的文件
文件里面的内容很简单...我看了一眼就记得了
phpinfo();
?>
然后在IE里面运行http://localhost/info.php后面的东西就不说啦!自由发展..出现一个很大很大的表就恭喜你了..如果没有就...你的问题咯...呵呵...
-----------------------------------------------
有些朋友WIN里面本来就有PWS..
在这里也说说吧!
如果您的电脑里面有PWS而又想运行APACHE+PHP+MYSQL的话很简单..只要把httpd.conf里面修改Port 80为Port 8080的话就可以了...其他的都不要管它...
而IE里面就应该是http://localhost:8080/info.php,记着:"http://localhost:8080";一定要这样打出来...不可以就localhost...那样会自动为80端口...
大功告成...有什么不明白直接QQ我吧!我研究了两天了.也看了很多的文章了...老是说些废话就是搞不好...都是一班垃圾文章...我看那个INSTALL.TXT还好...
[绝对后悔编写,文本方便我语文很差所以很可能不通顺,请见谅]

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

SublimeText3 Chinese version
Chinese version, very easy to use

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.
