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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T09:25:13+00:00 2026-05-30T09:25:13+00:00

I have a simple page (below) with a form. The form will submit if

  • 0

I have a simple page (below) with a form. The form will submit if the action=’ask.php’. (ask.php is the current page and the code below). When i change ask.php to question.php (another page on in the folder) the form does not submit. Why is this? Is the form redirecting before the data is placed in the database?

ask.php code;

<?php session_start(); ?>
       <!DOCTYPE html>
      <html xmlns="http://www.w3.org/1999/xhtml">
        <head>
        <title></title>

      <script type='text/javascript' src='http://code.jquery.com/jquery-1.7.1.min.js'></script>
      <script type='text/javascript' src='http://twitter.github.com/bootstrap/1.4.0/bootstrap-modal.js'></script>
        <link rel="stylesheet" href="../css/bootstrap.css" type="text/css" media="screen" />

         </head>
          <body>
       <?php include '../css/bar.php'; ?>
    <div id='content'>
<?php include '../nav.php'; 
?>



<?php


if (isset($_POST['submit'])){
include '../connect.php';
$question=mysql_real_escape_string($_POST['question']);
$detail=mysql_real_escape_string($_POST['detail']);
$date=date("d M Y");
$time=time();
$user=$_SESSION['id'];
$put=mysql_query("INSERT INTO questions VALUES ('','$question','$detail','$date','$time','$user','subject','0')");

$result=mysql_query("SELECT * FROM questions WHERE user='$user' AND time='$time'");
    while ($row = mysql_fetch_assoc($result)){

         $q=$row['id'];

        }
}

?>

<form method='POST' action='question.php'>   //won't submit because action is question.php?
    <p>Question:</p>
    <p><input type='text' name='question' id='question'  maxlength='200'></p>
    <p>Add some detail (optional):</p>
    <p><textarea id='detail' name='detail' ></textarea></p>

    <p><input type='submit' value='submit' name='submit'></p>
</form>


</div>
<?php include '../footer.php'; ?>
</body>

  • 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-30T09:25:14+00:00Added an answer on May 30, 2026 at 9:25 am

    Jeroen is right:

    The action page should include this kind of information, in order to get the information to the database:

    Part one and two make the data ready to be inserted into database:

    $question = mysql_real_escape_string($_POST['question']); // Part 1
    $detail = mysql_real_escape_string($_POST['detail']); // Part 2
    $con = mysql_connect("server","username","password");
    mysql_select_db("YourDatabase", $con);
    
    $sql="INSERT INTO YourTable (question, details) VALUES ('$question','$detail')";
    if (!mysql_query($sql,$con)) {
        //Some error handling here,
        // Stay away from using die in all but development
    }
    mysql_close($con)
    

    You should test format with preg_match, too, to check data is in expected format.
    Hope that helps

    EDIT!

    This method of connection is outdated!
    Use PDO for db connection.
    Some docs

    PDO Article

    PDO php docs

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have simple aspx page that has a form and a input field in
Find below my form and the action page it submits to. The _POST array
I have a simple page per below: Default.aspx <%@ Page Language=C# AutoEventWireup=true CodeFile=Default.aspx.cs Inherits=_Default
I have a simple page with my ScriptManager and my UpdatePanel , and my
I have a simple page with images, and when the user clicks the image,
I am simply learing Ajax with jQuery and have a simple page method that
K... I'm doing something obviously wrong. I have a simple page with a file
I have a simple web page that till now didn't need any login. It
I have a simple cart page that displays items that are in someones cart,
I have this simple Jsp page: <%@ page language=java import=java.awt.Color%> <% Color background =

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.