phpMyAdmin – mbstring not found error
To resolve the mbstring extension not found error with phpMyAdmin, enable the extension. Open your php.ini file and ensure that extensions are enabled, and pointing to the correct directory: extension_dir […]
To resolve the mbstring extension not found error with phpMyAdmin, enable the extension. Open your php.ini file and ensure that extensions are enabled, and pointing to the correct directory: extension_dir […]
When installing PHP on Windows, I used the manual install method. After installing, there are two sample php.ini files in the install directory. If you want a global PHP configuration […]
When installing PHP on Windows Server, I set up a simple ECHO page to test the install. It worked fine. I tried a simple phpinfo() file, and got a 500 […]
PHP arrays are defined with the array() function $myArray = array(“a”, “b”, “c”) And to loop over it: foreach ($myArray as $value){ echo “$value”; }