Results 1 to 3 of 3

Thread: Help needed with session/include

  1. #1
    Join Date
    Mar 2009
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Help needed with session/include

    Im wanting to count each page a visitor goes to including if the same page is visited more than once ie; if MR X vivits INDEX.php then CONTACTS.php then back to INDEX.php I need it to count as 3 page visits. I then need a different .php page to display for each page visited. i have the php files loaded as fb00.php, fb01.php , fbo2.php , fb03.php ect ect. heres the code im using
    Code:
    <?php 
    if (isset($_SESSION['hit']))
    $_SESSION['hit']++; 
    else 
    $_SESSION['hit']=0; 
    $try_file='fb0'.$_SESSION['hit'].'.php'; 
    if (file_exists($try_file)) 
    include $try_file; 
    else 
    { 
    $_SESSION['hit']=0; 
    } 
    ?>
    It works but only displays fb00.php and I need this to change with each new page
    Thanks for any help

    P.S. before anyone asks I need this because Im part of a banner exchange that requires a new banner to be displayed on each page. If you have the same banner on each page you get credited with 1 visit even if the visitor goes to 10 pages. If you have different banner on each page you will be credited with 10 visits rather than 1

  2. #2
    Join Date
    Apr 2008
    Location
    Limoges, France
    Posts
    395
    Thanks
    13
    Thanked 61 Times in 61 Posts

    Default

    Are you putting

    PHP Code:
    <?php

    session_start
    ();
    at the top of each page?

  3. #3
    Join Date
    Apr 2008
    Location
    Limoges, France
    Posts
    395
    Thanks
    13
    Thanked 61 Times in 61 Posts

    Default

    PHP Code:
    <?php
    session_start
    ();

    if (isset(
    $_SESSION['hit']))
        
    $_SESSION['hit']++; 
    else 
        
    $_SESSION['hit']=0
        
    $try_file='fb0'.$_SESSION['hit'].'.php'

    echo 
    $try_file;


    exit;

Bookmarks

Posting Permissions

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