How to create modules for the PHP voice Classes Modules are classes that can extends functionnalities of the PHP voice package. Module file should have the same name as the module class itself for example : vxml_mods/sample.class.php obj = &$obj; } /** * Class constructor */ function method($params){ // export $params here $field_name = $params[0]; $this->obj->start_field($field_name); $this->obj->end_field(); } } ?> Then you can call this modules : start_vxml("", "", "", "", "", "2.0"); $page->load("sample::method",array($field_name)); $page->end_vxml(); ?> Let me know if you have comments or idea to extend this feature. Hatem