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

  • Home
  • SEARCH
  • 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

I am very new to PHP, so forgive me my ignorance. I have HTML
Forgive my ignorance - still learning here. I am using Eclipse Ganymede (Java 1.5)
You'll have to forgive my ignorance, but I'm not used to using wide character
Forgive me for probably using the wrong term for this application mode. Our application
Forgive any ignorance of C++ type deduction in this, but I'd like to be
Please forgive the ignorance, but I'm very new to PHP and I couldn't find
I've developed on Windows and .NET for my whole career so forgive my ignorance
Please forgive my long question. I have an idea for a design that I
I hope you'll forgive me for thinking that configuring a DNS server would be
Forgive the vague title, I wasn't sure how to describe it. If you have

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.