Is it possible to show the incremental content links on a different page outside of the aMember's script on the same website? Thanks, Dwayne
Yeah, you can use php: <?php /// place this at the very top of the page session_start(); /// place this where you want the content displayed if ($_SESSION['_amember_links']) { echo "<ul>"; foreach ($_SESSION['_amember_links'] as $link_id => $link) { echo "<li><a href=\"".$link['link_url']."\">".$link['link_title']."</a></li>"; } echo "</ul>"; } ?> David