How to include external PHP file in Magento?
Can we include this file in event-observer model’s Observer.php file?
How can we execute external PHP file in Magento?
How to include external PHP file in Magento? Can we include this file in
Share
Including another class can easily be achieved by just making an extension for the classes used. Then just use standard Magento class loading techniques to access them:
It would also be worth considering creating the MySQL connection through Zend/Varien itself. Here is a starter function:
Which will give you an Zend DB instance that you can execute query() etc. on.