Link to home
Start Free TrialLog in
Avatar of Lee-Bartlett
Lee-Bartlett

asked on

Meta refresh is redirecting instantly.

Ok my meta refresh is mixxed in with my php files, only way i could get my page to refresh, i am very new to this. So here is all my code. How do i get this to stop, i would like to fill in the feilds, when submited it redirects
<?php require_once('db_connection.php'); ?>
<?php
 
$sql="INSERT INTO tblbasicform (name, email, buissnes_name, location, type)
VALUES
('$_POST[name]','$_POST[email]','$_POST[buissnes_name]','$_POST[location]','$_POST[type]')";
 
if (!mysql_query($sql,$connect))
  {
  die('Error: ' . mysql_error());
  }
 
?>
<html>
<head><meta http-equiv="refresh" content="2;url=updatedelete.php"></head>
<body>
 
Thank you, redirecting now...
 
</body>
</html>
 
 
AND THE PAGE THIS FILE IS CONNECTED TO IS 
 
 
 
<?php
 
 
//db connection
 require_once("includes/db_connection.php"); 
 //end of db connection 
?>
<html>
 
<head> </heaD>
<body>
  
<form name="form" method="post" action="home.php">
	  <input type="hidden" name="redirect" value="home.php"> 
  <table width="418" align="left" cellpadding="0" cellspacing="0">
    <tr>
      <td width="157"> Name:</td>
      <td width="259"><label for="name"></label>
      <input type="text" name="name" id="name"></td>
    </tr>
    <tr>
      <td>Email:</td>
      <td><label for="email"></label>
      <input type="text" name="email" id="email"></td>
    </tr>
    <tr>
      <td>WiFi Business Name:</td>
      <td><label for="buissnes_name"></label>
      <input type="text" name="buissnes_name" id="buissnes_name"></td>
    </tr>
    <tr>
      <td>WiFi Location;</td>
      <td><label for="textfield"></label>
      <input type="text" name="location" id="location"></td>
    </tr>
    <tr>
      <td>Free or Paid:</td>
      <td>
	  <label>Free
        <input type="radio" name="type" id="type" value="free">
        </label>
        <label >Paid
        <input type="radio" name="type" id="type" value="paid"><br />
        </label>	 
		
		
	 <?php 
	   
	   // db table connection
	   include("includes/form.php"); 
	   //end of db table connection 
	
	?>		
							
	  </td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td><label for="button"></label>
      <input type="reset" name="button2" id="button2" value="Reset">       
      <label for="sub"></label>
	  <input type="submit" name="button" id="button" value="Submit">
      <label for="button2"></label>
		</td>
 
    </tr>
  </table>
</form>
 
</body>
</html>
<?php mysql_close($connect) ?>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of PatrickAdrichem
PatrickAdrichem

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial