LAMP is short for Linux, Apache, MySQL, PHP, or in other words the standard open source, web platform. In the case of openSUSE the default is to use MariaDB (Welcome to MariaDB! - MariaDB) which is an open source fork of MySQL, and designed to be a drop in replacement, so it is very compatible.
There is documentation on LAMP from the openSUSE team at SDB:LAMP setup - openSUSE. However I roughly did the following:
Apache
sudo rcapache2 startsudo chkconfig -a apache2sudo apache2ctl -M #lists apache modulessudo vi /etc/sysconfig/apache2sudo rcapache2 restartsudo apache2ctl -M lists apache modulescd /srv/wwwsudo chown -R root:webadmin htdocssudo chmod -R 775 htdocssudo systemctl start mysql.service