Trying to select website info from signup table in database

I want to add the users website info to view_video.tpl

user.tpl has the variable:
Code:
{if $user_info[0].website ne ""}
<TR>
<TD>Website:</TD>
<TD>{$user_info[0].website}</TD>
</TR>
{/if}
and my_profile.tpl has this variable:
Code:
{$answers[0].website}
What is the variable for view_video.tpl??