Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7883057
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T04:26:00+00:00 2026-06-03T04:26:00+00:00

I am having trouble understanding this logic: I am using JavaScript to detect the

  • 0

I am having trouble understanding this logic:

I am using JavaScript to detect the browser width and passing that value to PHP as a session variable using the following code.

<?php
    session_start()
    if (empty($_SESSION['layoutType'])) {
        echo '<script type="text/javascript"> var session=false; var layoutType;</script>';
    } else {
        echo '<script type="text/javascript"> var session=true; var layoutType=' . $_SESSION['layoutType'] . ';</script>';
    }
    if (!empty($_SESSION['layoutType'])) {
        $layoutType = $_SESSION['layoutType'];
        if ( $layoutType <= 219 ) {
            $layout = 'mobile';
        } else if ($layoutType >= 220 && $layoutType <= 1024 ) {
            $layout = 'tablet';
        } else {
            $layout = 'desktop';
        }
    }
    echo $layout;

This correctly displays the value as mobile or tablet or desktop depending on the browser width. But when I try to use the same variable and paste the following code below the above code, it changes the value of $layout:

    function getFevicons(){
        if ( $layout = 'mobile' ); {
            echo '
            <link rel="apple-touch-icon" href="cdn/images/apple-touch-icon.png">
            <link rel="apple-touch-icon" sizes="72x72" href="cdn/images/apple-touch-icon-72.png">
            <link rel="apple-touch-icon" sizes="114x114" href="cdn/images/apple-touch-icon-114.png">
            ';
        }
        echo $layout;
    }
?>

Even though the layout is for the desktop, it now gives the output as mobile and also it echos the above favicon links. Why?

Am I doing something wrong?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T04:26:02+00:00Added an answer on June 3, 2026 at 4:26 am

    Call your function like so (getFevicons($layout);):

    function getFevicons($layout){
        switch ($layout) {
            case 'mobile':
                echo '<link rel="apple-touch-icon" href="cdn/images/apple-touch-icon.png"><link rel="apple-touch-icon" sizes="72x72" href="cdn/images/apple-touch-icon-72.png"><link rel="apple-touch-icon" sizes="114x114" href="cdn/images/apple-touch-icon-114.png">';
                break;
    
            case 'desktop':
                echo 'whatever';
                break;
    
            case 'tablet':
                echo 'whatever';
                break;
    
            default:
                // This will absolutely do nothing
        }
        echo $layout;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having some trouble understanding this brute force approach. I am using Perl
I'm having trouble understanding the value of this in the following example: struct A
Im having trouble understanding this : why Microsoft put Xattribute under Xobject ? they
I'm having trouble understanding this question, and the explanation of the answer for an
I'm having trouble understanding why this doesn't sort the vector by the time/size of
I am having trouble understanding this code: $.functionone = function(){ function setOptions(newOptions){ ... }
I'm learning F#, and I am having trouble understanding why this crashes. It's an
I am having a little trouble understanding ServiceKnownType in WCF. Taken from this blog
Im having trouble understanding this class and everything ive seen hasn't really helped. Ill
I am having a bit of trouble understanding this bug. Here is the code:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.