PHP

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 […]

PHP arrays are defined with the array() function $myArray = array(“a”, “b”, “c”) And to loop over it: foreach ($myArray as $value){ echo “$value”; }