View Single Post
  #15  
Old 05-08-2007, 10:09 AM
  Jon's Avatar 
Jon Jon is offline
 

X-Guru
  
Join Date: Oct 2002
Location: Vancouver, Canada
Posts: 4,200
 

Default Re: If statement help - wholesale

Here's the code to us:

In auth.php before ?>

Code:
$userinfo = func_query_first("SELECT login,firstname,lastname,membership FROM $sql_tbl[customers] WHERE login='$login'"); $smarty->assign("userinfo", $userinfo);

Code in your templates:

Code:
{if $userinfo.membership eq "Wholesale"} Show Text{/if}
Reply With Quote