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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:51:58+00:00 2026-06-02T00:51:58+00:00

I am trying to redirect users to a custom error page (for example: error.php)

  • 0

I am trying to redirect users to a custom error page (for example: error.php) when a duplicate entry is made, this is a sample of the insert statement, but I don’t know how to do the redirecting.

$values = $_POST;
foreach ($values as &$value) {
    $value = mysql_real_escape_string($value);
}

$sql1="INSERT INTO loan (loan_id)
VALUES ('$values[loan_id]')";

$result = mysql_query($sql1);
if (!$result) {
    die('Invalid query: ' . mysql_error());
}
  • 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-06-02T00:51:59+00:00Added an answer on June 2, 2026 at 12:51 am

    The proper way to redirect form input is using the HTTP 303 redirect.

    To redirect at the current line, do so something like this, in PHP:

    // Tell the browser to redirect
    header('Location: /error.php', TRUE, 303);
    
    // This ensures that the script doesn't continue
    // Also, it shows the error on the off chance their browser doesn't redirect
    die('Input error.');
    

    You must ensure that you include the header function before any output.

    Here it is in your code:

    if (!$result) {
        header('Location: /error.php', TRUE, 303);
        die('Invalid query: ' . mysql_error());
    } else {
        header('Location: /success.php', TRUE, 303);
        die('Success');
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to redirect to a .php page if the $validForm variable is TRUE.
I'm trying to redirect users to custom url /gallery/(username)/ after successfully logging in. It
I have a custom registration form. I am trying to redirect users to a
Trying to redirect users to their associated 'home' page after successful login w/out nil'ing
I'm trying to redirect users that login to their profile page but get the
I am trying to serve a custom error page in an MVC2 app, which
I am trying to redirect users to a page, only from a specific page.
I'm trying to redirect users back to a page that they were trying to
I'm trying to redirect users to Paypal to make a payment but instead the
I'm trying to redirect to a page that uses basic authentication, with no success

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.