Hi, I created a custom database table in amember. How can I display data inside the new table into the templates? Any help would be greatly appreciated. JH
You can use php code in template and query your table: Code: {php} global $db; $q = $db->query("select * from yourtable"); while($r = mysql_fetch_assoc($q)){ print $r['data']; } {/php}