I am trying to redirect to thanks webpage after stored on data on mysql using header("Location: success.html");
exit;
but when i open that link it will automatically goes into success.html page without entering or Storing any data on form and mysql.
<?php
$con=mysqli_connect("localhost","root","","vdl");
// Check connection
if (mysqli_connect_errno())
{
    echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
if(isset($_POST['submit'])) // Fetching variables of the form which travels in URL
{
    $company_name = $_POST['company_name'];
    $since = $_POST['since'];
    $strength = $_POST['strength'];
    $head_quarter = $_POST['head_quarter'];
    if($company_name !=''||$since !='')
    {
        mysqli_query($con,"insert into digital_library(company_name, since, strength, head_quarter) values ('$company_name', '$since', '$strength', '$head_quarter')");
        echo "<br/><br/><span>Data Inserted successfully...!!</span>";
        mysqli_close($con);
    }
    else
    {
        echo "<p>Insertion Failed <br/> Some Fields are Blank....!!</p>";
    }
}
header("Location: success.html");
exit;
?>
 
     
    