Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End If on a certain page display a certain link

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #39373
    mitzi
    Member

    Hello, would anyone know what lines of php I could put in my header which would show a certain link if you are on a certain page?

    Eg. If you are on the “Home” page display this link. If you are on the “Contact” page display this link?

    Thank you,
    Marissa

    #107903
    Senff
    Participant

    Any PHP site? Or a particular platform…..Wordpress?

    #108279
    irish1381
    Member

    basic example:


    $setPage = $_SERVER;
    $currPage = trim($getPage, '/');

    if($currPage == 'WTFOMG.php'){
    echo 'do some stuff';
    }elseif($currPage == 'GMOFTW.php'){
    echo 'ffuts emos od';
    // echo out a link or something fun and creative
    }
Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Back End’ is closed to new topics and replies.