Thread: Help with PHP

Results 1 to 3 of 3
  1. #1
    Join Date
    Aug 2006
    Posts
    17
    Plugin Contributions
    0

    Default Help with PHP

    Hello everybody!
    I'm setting up new sidebox, everything goes all right, but my only problem is that I need to show the box only when logged in.. It's more PHP thing..

    if ((!$_SESSION['customer_id'] && $_GET['main_page'] != FILENAME_LOGIN && $_GET['main_page'] != FILENAME_CREATE_ACCOUNT && $_GET['main_page'] != FILENAME_PASSWORD_FORGOTTEN))

    That one is code of the login-box contribution.. It's the exact opposit of what I want;) How to rearrange the "SESSION" to serve my sites?
    So, anybody helps me with it?

  2. #2
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Help with PHP

    PHP Code:
    if ($_SESSION['customer_id']) {
      
    $show_blah true;

    If you have the sidebox setup with a control for when to show it like the featured.php sidebox ... you can use that after the:
    PHP Code:
    // test if box should display
      
    $show_blahtrue
    Then, surround the remaing code with the IF:
    PHP Code:
    if ($show_blah == true) {
    // all code here


    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #3
    Join Date
    Aug 2006
    Posts
    17
    Plugin Contributions
    0

    Default Re: Help with PHP

    Thanks, you're great!

 

 

Similar Threads

  1. Replies: 4
    Last Post: 17 Jul 2015, 04:44 AM
  2. v151 Help with a php statement
    By suportafaceri in forum Setting Up Categories, Products, Attributes
    Replies: 2
    Last Post: 6 Apr 2014, 09:43 AM
  3. Help with php (or css)
    By zcadqliv in forum Templates, Stylesheets, Page Layout
    Replies: 0
    Last Post: 11 Apr 2011, 01:57 AM
  4. php help with tpl_product_info_display.php
    By JamesM in forum Templates, Stylesheets, Page Layout
    Replies: 7
    Last Post: 29 Sep 2010, 08:09 PM
  5. PHP help with broken tpl_main_page.php
    By HeresySnowboarding in forum General Questions
    Replies: 4
    Last Post: 18 Sep 2008, 07:48 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg