Catmandu Posted April 22, 2005 Report Share Posted April 22, 2005 Hallo zusammen, ich m?chte folgendes erreichen. Es soll in der Leiste zuerst Anmelden(login) stehen, wenn jemand drauf klickt kommt er in den Bereich logiin. Sobald jemand sich eingeloggt hat, soll Abmelden (logoff) erscheinen. Habe paar Versuche unternommen aber komme da ich mich mit php (if und else) nicht auskenne, nicht richtig weiter. Vom Prinzip m??te man ja folgendes anpassen, aber wie?: {if $account}{php} if (isset($_SESSION['customer_id'])) { {/php}{#link_logoff#} | {php} } {/php}{/if}{if $account}{#link_account#} | {/if}{#link_cart#} | {#link_checkout#} K?nnte mir jemand bitte nen Tip geben, wie die Tags aussehen m?ssen? Vielen Dank Catmandu Link to comment Share on other sites More sharing options...
dukie6666 Posted April 22, 2005 Report Share Posted April 22, 2005 so gehts: {if $account}{php} if (isset($_SESSION['customer_id'])) { {/php}<a href="{$logoff}">{#link_logoff#}</a> {php} } {/php}{/if} {if $account}{php} if (!isset($_SESSION['customer_id'])) { {/php}<a href="login.php">Anmelden</a>{php} } {/php}{/if} Link to comment Share on other sites More sharing options...
Catmandu Posted April 22, 2005 Author Report Share Posted April 22, 2005 Vielen Lieben Dank! Jetzt sieht es komplett so aus und es geht prima: {if $account}{php} if (isset($_SESSION['customer_id'])) { {/php}{#link_logoff#} {php} } {/php}{/if} {if $account}{php} if (!isset($_SESSION['customer_id'])) { {/php}Anmelden{php} } {/php}{/if} | {if $account}{#link_account#} | {/if}{#link_cart#} | {#link_checkout#} Gru? Catmandu Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.