Apache and PHPH also have MySQL, which has been successfully built and is now connected to MySQL. After I downloaded the phpmyadmin, I put it under my htdocs file. And then open it in the address bar, that's what it looks like.
Reply to discussion (solution)
Open Apache httpd.conf file, add default home: DirectoryIndex index.php index.html
PHP support included in PHP module: LoadModule php5_module "D:/php/php5apache2_2.dll"
PHP file types added to browser recognition: AddType application/x-httpd-php. php. phtml
Adding the path to the php.ini file provides Apache load: Phpinidir "d:/php"
This brother Hello, I follow your operation carried out. Now it's like this.
He's saying to load the php_mbstring extension
Open the php.ini file and define the path to the extension package.
Look for "Extension_dir", modified to: Extension_dir = "D:\php\ext"
Open some of the necessary extensions, that is, the semicolon ";", which removes the file name of some extension packages, is configured as follows:
Extension_dir = "D:/lamp/php5/ext"
Extension=php_curl.dll
Extension=php_fileinfo.dll
Extension=php_gd2.dll
Extension=php_gettext.dll
Extension=php_imap.dll
Extension=php_mbstring.dll
Extension=php_exif.dll; Must is after mbstring as it depends on it
Extension=php_mysql.dll
Extension=php_mysqli.dll
Extension=php_openssl.dll
Extension=php_pdo_mysql.dll
So what am I supposed to do?
Extension=php_mbstring.dll, open this.
Thank you, finally have solved him. It took two days.
Finally solved, thanks to two dudes.