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 7181655
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T17:36:12+00:00 2026-05-28T17:36:12+00:00

I know this kinda seems like a stupid question and with more research i

  • 0

I know this kinda seems like a stupid question and with more research i might be able to find the answer but i have a deadline to please help.

Using codeigniter im trying to see if the ‘ID’ in the url is ‘uID’ (user id) or ‘sID’ (system id).

the code im using is:

    if(isset($this->input->get('uID'))) {
        $getID = $this-input->get('uID');
    } else {
        $getID = $this->input->get('sID');
    }

when i use that i get a server error saying website is temporarily down or under constrcution. Any ideas?

Thanks in advance for the help. Usually i would spend more time searching for the answer myself but i just dont have time tonight.

  • 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-05-28T17:36:13+00:00Added an answer on May 28, 2026 at 5:36 pm

    The warning you’re getting is probably a 500 error — meaning your server is not set up to display errors to you, or you don’t have it enabled in your index.php file.

    The error you’re getting, but not seeing is: “Fatal error: Can’t use function return value in write context” because you can’t use isset on a function.

    If you could it wouldn’t do what you’re expecting as CI’s $this->input->get('key') always returns a value — it returns false if the key does not exist.

    Therefore, to accomplish what it seems you’re trying to do, you’d write:

    $getID = $this->input->get('uID') ? $this->input->get('uID') : $this->input->get('sID');
    

    Based on the comment below, I thought I’d also provide it in a way that makes sense to you:

    if($this->input->get('uID')) {
      $getID = $this->input->get('uID');
    }
    else {
      $getID = $this->input->get('sID'):
    }
    

    The two solutions are functionally the same.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is probably a stupid question, but I still have no answer. I would
I know this is kind of a dumb question, but does anyone have an
i know this is a stupid question but i d'ont know how to do
I'm really sorry. This must seem like an incredibly stupid question, but unless I
I tried searching for this, but couldn't find much. It seems like something that's
i know this is kinda retarded but I just can't figure it out. I'm
I know that this kind of issue is most discussed. But I would like
I know this question has kind-a started religious wars in past and there might
Know this might be rather basic, but I been trying to figure out how
I think this question can be kinda idiot, but anyway: I'm working in a

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.