You shouldn't use Echo - try creating a $variable, then you can do one of a few things:
- 1. return $variable at the end of your script; 2. $tipping = require(yourscript.php); in the appropriate vBulletin file; 3. place the $tipping variable in the template that will display when u call this page.
- 1. Add your whole script formatted as a function into one of the vBullein includes/function_*.php files; 2. Call your function from one of the vBullein files (eg global.php) using $tipping = yourFunction(); 3. follow step 3 from the previous example
HTH