If you are a web developer, you got to have these packages to be deployed on your ARCH.
Those who use Windows, just keep playing CIVILIZATION V, no bothers.
Here is how
Installing part
Console
123
# update all packagespacman -Syu;pacman -S apache php php-apache mariadb
Configuring part
Console
123456789101112131415
vi /etc/httpd/conf/httpd.conf
# append following entriesLoadModule php5_module modules/libphp5.so
AddHandler php5-script php
Include conf/extra/php5_module.conf
vi /etc/php/php.ini
# uncomment this lineextension=mysqli.so
# setup mariadb, this is a interactive command, just follow the instructionsudo mysql_secure_installation
# enable httpd at start-upsudo systemctl enable httpd && systemctl restart httpd