PDA

View Full Version : Can a plugin call another plugin?


juicemanfta
06-22-2006, 11:25 PM
I have a plugin in the left column and when the user clicks on the submit button this calls another PHP file. I want to load this file in the left column also, how can I do this? FYI the first file/plugin is a form that I am using to submit information to the PHP file.

Adrian Schneider
06-22-2006, 11:47 PM
Can't you do somethin like this within the plugin? ($hook = vBulletinHook::fetch_hook('hook name')) ? eval($hook) : false;

// or

include('./some/file.php');

juicemanfta
06-23-2006, 02:08 AM
Thanks but i just got this Iframe to send the form info....i am using it to send the info without refreshing the page...works fine...took like 2 weeks to get this working....:)

thanks again