Read this:
Understanding A Template-Based System.
vBs template system doesn't work the same as how you'd normally write PHP in scripts. You need to assign output to variables and then use these variables in your template. Also this line:
PHP Code:
// change the line below to contain the name of the actual main output template used in your script
eval('print_output("' . fetch_template('test_mytesttemplate1') . '");');
Should be at the very bottom (above the closing PHP tag) as it stops execution at the end of that line, so anything after it won't get processed. If you don't know any PHP I recommened you go and learn at least the basics before you try playing around.