(load "~/emacs-config/php-mode.el")
(load "~/emacs-config/php3-mode.el")


;editer les fichiers php en mode C
(autoload 'php-mode "php-mode" "PHP editing mode" t)
(add-to-list 'auto-mode-alist '("\\.php3\\'" . php-mode))
(setq auto-mode-alist
      (append
        (list (cons "\\.php$" 'c-mode))
	auto-mode-alist))
