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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:36:58+00:00 2026-05-23T14:36:58+00:00

I have an error.php file which can be grossly simplified to: <? if (!isset($error))

  • 0

I have an error.php file which can be grossly simplified to:

<?

  if (!isset($error))
    $error = "Unspecified Error";

  echo "Error: $error";

?>

It is not “normal usage” to just navigate to error.php. Rather, I would do something like:

$dbh = mysql_connect($host, $user, $pass);

if (!$dbh)
{
  $error = "Can't connect to MySQL: " . mysql_error();
  include('error.php');
  exit();
}

That said, if the user does navigate to error.php then they will just get “Error: Unspecified Error” as expected.

All my code is working, and the error page shows up and works exactly as expected, however Zend is complaining that $error is undefined on the line: if (!isset($error)).

I realise my design pattern is awful, but I’m just throwing together something quick-and-dirty in this case.

  • 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-23T14:36:59+00:00Added an answer on May 23, 2026 at 2:36 pm

    Better idea, create a function instead:

    function output_error( $error = NULL )
    {
        if( !$error ) $error = "Unspecified Error";
        echo "Error: $error";
    }
    

    It has the benefit of both removing the Zend issue, and you have a MUCH better design. Then:

    if (!$dbh)
    {
      include('error.php');
      output_error( "Can't connect to MySQL: " . mysql_error() );
      exit();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a website which uses the custom 404 error handling in PHP/Apache to
I have a form which has action=process.php . Inside that php file there is
I have an index.php, which at it's very start includes db.php - file which
I have some php file A which is called by cron, from console (php
I'm having problem with global variable in PHP. I have mysqli config file which
In my PHP file I have a line which checks that the curl extension
I have a page called Error.php. Variables are usually passed to it using the
Given that I have a custom PHP error handler already, does it make sense
I have a custom error handler attached to E_ALL PHP errors. In an external
I am having trouble with modifying a php application to have pagination. My error

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.