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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:03:24+00:00 2026-05-18T02:03:24+00:00

Forgive my ignorance in this.. I think I understand that using: extract($_REQUEST); in a

  • 0

Forgive my ignorance in this..

I think I understand that using:

extract($_REQUEST);

in a php file will convert html form inputs into a corresponding variable. For instance:

<input type="text"name="author"/>

becomes:

$author

Is that right?

However, I’m confused as to how to handle a multipart form. For instance one with 1 file (an image) and two text inputs. How do I extract this data and put it into variables?

  • 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-18T02:03:25+00:00Added an answer on May 18, 2026 at 2:03 am

    Okay, after another reading, your undeerstanding of extract is right.
    But note that the author input will generally be available as $_REQUEST["author"] anyway. Generally avoid to extract them all.

    If you for example want the value to be reused as form input you can write:

    <input name="author" value="<?=htmlspecialchars($_REQUEST["author"])?>">
    

    If you want to have shortnames, if for example it’s too many fields and it spares lots of typing, then I’d recommend using the optional parameters to extract():

    extract($_REQUEST, EXTR_PREFIX_ALL, "i_");
    

    This would generate a $i_author variable, and all other input fields with a $i_ prefix. This is believed to have less sideeffects with other (hyopthetical) local or global variables. Also you can use array_map("htmlspecialchars",$_REQUEST) for extraction, if that aids the processing.


    Multipart form data will fill up the $_FILES array additionally, which has a different structure. See PHP manual http://php.net/manual/en/features.file-upload.php

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

Sidebar

Related Questions

Forgive my ignorance if this is 'a basic question'..... I have a method that
I am a beginner to PHP so please forgive any ignorance... I am using
Forgive me for my ignorance on this subject, but I'm a relatively seasoned php
Forgive my ignorance, but I am a beginner in java that comes from using
Forgive my ignorance in asking this basic question but I've become so used to
New to all this so forgive my ignorance. I am trying to figure out
This is probably a very simple question so please forgive my ignorance, but can
I'm writing a twitter bot using tweepy that will search for mentions to it
I'm not a Rails developer (currently) so please forgive my ignorance on this. One
Forgive my ignorance of .Net, php/python programmer here. I am providing a client who

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.