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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T21:45:09+00:00 2026-06-05T21:45:09+00:00

I recently came across this line in a PHP script: $_REQUEST[‘start_date’]=$date; Is it allowed

  • 0

I recently came across this line in a PHP script:

$_REQUEST['start_date']=$date;

Is it allowed or useful in any way to assign something to the super global $_REQUEST variable?
If there is a $_COOKIE[‘start_date’] will this change the cookie value?

  • 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-05T21:45:11+00:00Added an answer on June 5, 2026 at 9:45 pm

    Yes, its allowed and might be helpful for a number of reasons.

    • Debugging — If, for some reason you want to “force” a certain request parameter, you can set a value in the $_REQUEST, $_GET, or $_POST arrays. This would override any value sent by the requesting page, which may be desired.
    • Because you’re going to do something with the entire array — if you want to, for example, json_encode all of the $_REQUEST key-value pairs as well as some additional values, it might be faster to just “add” values to $_REQUEST in this manner, then pass $_REQUEST to json_encode().

    Regarding your question about $_COOKIE, no you can’t change the value of a cookie that way, only access it.

    Note from author: The following example was added as a suggested and approved edit to my original answer. And while it may work, there are better ways to protect your site from injection attacks (e.g. prepared statements). IMHO, a prudent programmer should strongly consider these approaches before relying on the code below.

    Think about preventing SQL injection attacks on your website. That simple code will stop them for all $_REQUEST variables (mysqli example):

    function injectionwall($dbinterface)
    {
        foreach($_REQUEST as $key => $data)
        {
            $_REQUEST[$key]=$dbinterface->real_escape_string($data);
        }
    }
    

    All $_REQUEST variables are now safe to use 🙂

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

Sidebar

Related Questions

I've been developing with PHP for some years now, and recently came across this
I recently came across some code that looks something like this: <head> <?php /*
I recently came across this line in a code - fprintf(logfile, |-IP Version :
Recently I came across this error in my WCF trace: There was an error
Recently I came across this video on Programming Paradigms and the prof. used terms
I recently came across a question about sequence points in C++ at this site,
Recently I was trying some practice programs in python and I came across this
I recently came across the following line of code: var type = (typeof x).toLowerCase();
I recently came across this website: http://studiostyles.info , which contains a list of color
I recently came across this syntax, I am unaware of the difference. I would

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.