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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T14:01:49+00:00 2026-05-25T14:01:49+00:00

i am fetching some $_POST vars and put them in an array likes this:

  • 0

i am fetching some $_POST vars and put them in an array likes this:

foreach (array_keys($_POST) as $key) {
    $clean[$key] = mysql_real_escape_string($_POST[$key]);
}

the result is an array like this:

Array
(
    [pers_anrede] => Frau
    [pers_titel] => Dr.
    [pers_vorname] => BLa
    [pers_nachname] => blablabla
    [pers_vorwahl] => 0123
    [pers_telefon] => 3456789
    [job_bundesland] => Berlin
    [job_plz] => 
    [job_ort] => 
    [job_str] => 
)

now, what i want to do is some form of simple validation. if an element of the array above has any value, its error is set to false. if a value for the element is missing, its error is set to true. i would like to get an array like this (keeping the example data from above, only the last three elements would produce an error:

Array
(
    [pers_anrede] => false
    [pers_titel] => false
    [pers_vorname] => false
    [pers_nachname] => false
    [pers_vorwahl] => false
    [pers_telefon] => false
    [job_bundesland] => false
    [job_plz] => true
    [job_ort] => true
    [job_str] => true
)

with this array i want to be able to do things like this etc:

if $error['pers_anrede'] == true {
      $error_message = 'please correct blabla';
}

thanks for helping out

  • 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-25T14:01:49+00:00Added an answer on May 25, 2026 at 2:01 pm

    This will loop through your clean array’s keys and load an error array that stores true if they are empty:

    foreach ( array_keys( $clean ) as $key )
        $error[$key] = empty( $clean[$key] );
    

    or if you don’t want to use array keys:

    foreach ( $clean as $key => $value )
        $error[$key] = empty( $value );
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In my rails app the model is fetching some XML and returning an array.
I am fetching some value from another page using jQuery .get() like this <input
I am having one array where i am fetching data from database for some
I am fetching some content from another page using jQuery .get() like this -
I am fetching some data from a database like this $sql =SELECT * FROM
I am fetching some html table rows with BeautifulSoup with this piece of code:
I'm fetching some data from an MSSQL table using the mssql_fetch_object, but the text
If I have an ajax call off fetching (with a callback) and then some
I am fetching an array of floats from my database but the array I
I'm fetching some settings out of the database based on a value passed from

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.