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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T23:06:11+00:00 2026-05-17T23:06:11+00:00

Let me start by saying I know nothing about Joomla or PHP so i

  • 0

Let me start by saying I know nothing about Joomla or PHP so i might be comparing apples to oranges here but….

I keep seeing JRequest::getVar($var) and $var in some code i’ve been looking at. Can someone explain what the difference between these two is?

According to Joomlas’ documentation getVar , “Fetches and returns a given variable.” If that is the case why would the following code return different results?

echo JRequest::getVar($amount);

echo $amount;
  • 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-17T23:06:12+00:00Added an answer on May 17, 2026 at 11:06 pm

    Disclaimer: I don’t know the first thing about Joomla.

    Looking at the documentation, JRequest::getVar fetches values from GET or POST parameters and is supposed to be used like JRequest::getVar('amount') (note the argument is a string, not a variable). echo $amount and echo JRequest::getVar($amount) are of course nowhere near equivalent, the former means “echo the value of $amount“, the latter “echo the value of a GET or POST variable with the name of the value of $amount.”

    The second parameter $default is also very useful:

    $amount = JRequest::getVar('amount', 100);
    
    // is roughly equivalent to:
    
    if ($_SERVER['REQUEST_METHOD'] == 'GET' && isset($_GET['amount'])) {
        $amount = $_GET['amount'];
    } else if ($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['amount'])) {
        $amount = $_POST['amount'];
    } else {
        $amount = 100;
    }
    

    Even without the second parameter though, it’ll take care of variable cleaning and (un)escaping where necessary, so it’s a good idea to use this function to read request parameters.

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

Sidebar

Related Questions

Let me start by saying that I know nothing about Cron, so sorry. How
First let me start of saying I know absolutely nothing about c++ and I
Let me start by saying I know about position() but I can't seem to
Let me start by saying that I do not advocate this approach, but I
Let me start by saying that I know that NH doesn't recommend using bulk
Let me start by saying I'm a huge fan of the elegance of this
Let me start out by saying that I'm not a JavaScript developer so this
Before I start with the real question, let me just say that I might
Let me start by saying I am not an SQL or SQL Server expert
Let me start by saying I've read these questions: 1 & 2 , and

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.