{if $user_info[0].website ne ""}
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??
Re: {if $user_info[0].website ne ""}
Let me see if I understand this correctly...
In the view_video.tpl where it has the "User Details"... user name and all that, you want to also include the user's website as part of the User Details and sticking in the {$answers[0].website} in that section doesn't work?
Look to user.tpl and see if there's something in there that will work...
It might be this?
Code:
{if $user_info.website ne ""}
<TR>
<TD>Website:</TD>
<td>{$user_info.website}</td>
</TR>
{/if}