print_output halts the execution of the script, so you should only be calling that function once.
So nothing is being called after this line:
PHP Code:
eval('print_output("' . fetch_template('vBideo_main') . '");');
in your script.
There is also no reason to close the php tag and start a new php statement, as you are not embedding it in any html or anything.
Also get in the habit of sanitizing $_GET, $_POST, and $_REQUEST variables with vBulletin's input cleanser $vbulletin->input->clean_array_gpc();
Here is a great article about that:
https://vborg.vbsupport.ru/showthrea...lean_array_gpc