How do I enable multimode emacs to program PHP without messing up my indents?

emacs, php

Solution

If you're running emacs 22, you should just be able to run:

M-x nxhtml-mumamo

when editing an html document. You might want to add it to your auto-mode-alist to get it to automatically load for html docs. See here for more info:

http://www.emacswiki.org/cgi-bin/wiki/MuMaMo http://www.emacswiki.org/cgi-bin/wiki/PhpMode

Problem

Whenever I indent `HTML` in `PHP` mode, `emacs (22.1.1, basic install on Redaht Linux over Putty-SSH)` pops up a frame and tells me to get `MUMODE` or `somesuch` extra add-on. I installed `PHP` Mode without a big hassle, but I don't know how to get this multi-mode rolling. I'd like to know 2 things ``` How to install and configure multi-mode How to disable pop-ups in Emacs ```

Original source