PHP,HTML Need to direct from one form to another form

Sanjaya

I have written a code to get First name,last name and NIC no. If First name is missing I will show a error call "missing" infront of the textbox. All this thing is working and it will send the information in to the same page.

If first name is missing show the error in the same form which will allow user to refill it. If the user entered information correctly, I need to redirect user to another form. How can I do it?

<?php
      $fnameerr="";
      $name="";
if($_SERVER['REQUEST_METHOD']=="POST")
{
    if(empty($_POST["fname"]))
    {
    $fnameerr="Missing";
    }
}

?>
<head>
<title>Untitled Document</title>
</head>
<body>
<form name="form1" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]);?>" method="POST">

First Name:<input type="text" name="fname" value="<?php echo htmlspecialchars($name);?>">
<span class="error" style="color:#FF0000">*<?php echo $fnameerr;?></span>
<br/><br/>

Last Name:<input type="text" name="lname" /><br/><br/>

NIC:<input type="text" name="nic" /><br/><br/>

<input type="submit" name="sub" value="Register"/>

<input type="reset" name="re" value="Reset"/>

</form>

</body>
</html>
Ing. Michal Hudak

Use header() to redirect

if(empty($_POST["fname"])) {
    $fnameerr="Missing";
}
else {
    header("Location: anotherForm.php");
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Converting my HTML from one form to another

From Dev

Changing text in one form, from another form

From Dev

Transferring text from one form to another form

From Dev

redirect form result from php file to another one

From Dev

How to convert php object array from one form to another

From Dev

passing varables' value from one form to another in php

From Dev

How can I pass form data from one html file to another without JS/PHP?

From Dev

Transform javascript object from one form to another

From Dev

Copy input values from one form to another

From Dev

How to send a list from a form to another one

From Dev

Invoke event of one form from another

From Dev

WinForms - Passing values from one Form to another

From Dev

Pass on the form data from one component to another

From Dev

Calling textbox information from one form to another

From Dev

Changing DateTime Format from one form to another

From Dev

Using a public void from one form to another

From Dev

PHP SQL : How to save data to multiple database from one html form OR how to copy data from one database to another database automatically

From Dev

Sending values from one form to another without returning to form 1

From Dev

Passing Data from one form to another form in Yii2

From Dev

transfer data from one form dataGridView to another form TextBox

From Dev

how to restructure json object to convert from one form to another form

From Dev

In Shell how to Replace string from one form to another form

From Dev

Drag and drop from one form to anywhere in another form

From Dev

How to pass value from one form to another form on submiting it?

From Dev

Refresh contents of one form from another form vb.net

From Dev

tranfer checked values of datagridview from one form to another form datagridview

From Dev

How to reduce form load time from one form to another

From Dev

need to transform array of objects from form to another in angular

From Dev

How would one sync text from one form to another?

Related Related

  1. 1

    Converting my HTML from one form to another

  2. 2

    Changing text in one form, from another form

  3. 3

    Transferring text from one form to another form

  4. 4

    redirect form result from php file to another one

  5. 5

    How to convert php object array from one form to another

  6. 6

    passing varables' value from one form to another in php

  7. 7

    How can I pass form data from one html file to another without JS/PHP?

  8. 8

    Transform javascript object from one form to another

  9. 9

    Copy input values from one form to another

  10. 10

    How to send a list from a form to another one

  11. 11

    Invoke event of one form from another

  12. 12

    WinForms - Passing values from one Form to another

  13. 13

    Pass on the form data from one component to another

  14. 14

    Calling textbox information from one form to another

  15. 15

    Changing DateTime Format from one form to another

  16. 16

    Using a public void from one form to another

  17. 17

    PHP SQL : How to save data to multiple database from one html form OR how to copy data from one database to another database automatically

  18. 18

    Sending values from one form to another without returning to form 1

  19. 19

    Passing Data from one form to another form in Yii2

  20. 20

    transfer data from one form dataGridView to another form TextBox

  21. 21

    how to restructure json object to convert from one form to another form

  22. 22

    In Shell how to Replace string from one form to another form

  23. 23

    Drag and drop from one form to anywhere in another form

  24. 24

    How to pass value from one form to another form on submiting it?

  25. 25

    Refresh contents of one form from another form vb.net

  26. 26

    tranfer checked values of datagridview from one form to another form datagridview

  27. 27

    How to reduce form load time from one form to another

  28. 28

    need to transform array of objects from form to another in angular

  29. 29

    How would one sync text from one form to another?

HotTag

Archive