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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T04:43:03+00:00 2026-05-26T04:43:03+00:00

I am having an issue when processing form data. When the form is submitted,

  • 0

I am having an issue when processing form data. When the form is submitted, an object from the sign_up class is created and the $_POST array is validated within this class. Various ‘if’ statement checks are then carried out to filter out unwanted chars, if the result does not equal ‘0’, then a message is added to an array, please see an extract below

    <?php
    include('super_class.php');

    class Signup_User extends Super_Class {
          protected $errors = array();

     public function processUserInput() {

          if($_SERVER['REQUEST_METHOD']=='POST') {

                if(0 == preg_match("/\S+/",$name = $_POST['name'])) {
                     $this->errors['name'] = "Please enter your first name.";
          }

The form has php code, which execute the following, when a field has not been filled in, etc

    <?php if(isset($_POST['name'])) { echo $sign_up->getError('name');}?>   

The getError code in the sign_up class object.

    public function getError($name) {

    if($this->errors[$name]) {
        return $this->errors[$name];
    }
}

If I load the form and just press ‘submit’ all errors print out next to the input fields as intended, however if I enter some text into the name input box for example, I get the following error: Notice: undefined index name, and points to the getError function?

I thought I may need to define the $_POST array into variables first and then check them, but the result was still the same.

Hope someone can help, I have been going round in circles on this one!!

  • 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-26T04:43:04+00:00Added an answer on May 26, 2026 at 4:43 am

    You’re trying to display an error for the ‘name’ field, but as it’s valid, there’s no error, and thus no index in $this->errors for ‘name’. Try this instead…

    public function getError($name) {
    
        if(isset($this->errors[$name])) {
            return $this->errors[$name];
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am having a small issue, I am trying to run a $(form#picform).submit after
Having an issue with random individuals trying to access an intranet site with a
Having an issue here that I have tried everything I can think of but
The issue I'm having is issue with is I'm trying to get the paintComponent
I'm having an issue with a query that currently uses LEFT JOIN weblog_data AS
I'm having an issue with my regex. I want to capture <% some stuff
I'm having an issue with a Flash/Flex erroring in Firefox but not IE. I
I’m having an issue where a drop down list in IE 6/7 is behaving
I am having an issue where Tomcat is treating extra path information as part
I'm having an issue with a standard ASP.NET page that has a TextBox 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.