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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:44:23+00:00 2026-05-17T17:44:23+00:00

how can I prevent PHP from returning an Undefined variable error every time I

  • 0

how can I prevent PHP from returning an Undefined variable error every time I try to check a variable if it has contents and that certain variable hasn’t been used yet? In my previous setup, I can check $_POST[’email’] even if I haven’t put anything into it yet. It simply returns a blank or empty result. That’s how I want my PHP setup to work but for the life of me, I can’t seem to find figure out how to configure it. 🙁

Example:

<?php
if ($_POST['info'] != '') {
  // do some stuff
}
?>
<form method="post">
<input type="text" name="info" />
<input type="submit" />
</form>

When you use the above script in a single PHP page and run it on my current setup, it returns an Undefined variable error. On my previous setup, that script worked like a charm. Can anyone share some light into this problem of mine. If you need further details, just say so and I will try to add more details to this post.

I know about the isset() checking but I don’t want to use it on all of my scripts. I want it to not be that restrictive about 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-17T17:44:23+00:00Added an answer on May 17, 2026 at 5:44 pm

    Most likely it’s not an error, but a Warning. You can set PHP not to display errors/warnings if you want. Just add this to the begining of your code:

    ini_set('display_errors', 0);
    

    Altough, I recommend you not to be lazy and have your code not display any errors, warnings, notices whatsoever, better safe than sorry.

    And the preferred way to do what you want to do is

    <?php
    if (isset($_POST['info'])) {
      // do some stuff
    }
    ?>
    <form method="post">
    <input type="text" name="info" />
    <input type="submit" />
    </form>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I prevent the image tag that calls the associated image from displaying
Does anyone know how I can prevent the text in a table cell from
How can I prevent a user from resizing GridViewColumns withing a ListView control?
How can I prevent the user from being able to resize an image in
In .NET, how can I prevent multiple instances of an app from running at
Does anyone know how I can, in platform-independent C++ code prevent an object from
Is there an open source filter that I can use on Tomcat to prevent
I just created a PHP page that spits outs some data from my database
Every time that I want to do a Layout, I'm getting a black layout
How can I programmatically lock/unlock, or otherwise prevent/enable editing, a source file on Linux

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.