Jump to content

how to redirect after inserting form into database


AdRock

Recommended Posts

I am having trouble redirecting to another page after form information has been entered into a database

Here is the code that I use to insert into the database
[code]<?php
include_once("../includes/connection.php");
$title=$_POST['title'];
$content=$_POST['content'];

mysql_connect($host,$user,$password);
@mysql_select_db($database) or die( "Unable to select database");

$query = "INSERT INTO news VALUES ('','$title','$content','')";
mysql_query($query);

mysql_close();

header ('location:http://www.mysite.com/index.php?page=confirm');
?>[/code]There is no html or head just what you see in the code.

I am trying to open a confirmation page telling the user that the data has been stored after they click the submit button
Link to comment
Share on other sites

first of all you should read the sticky on headers

but here is how your header should look.

[code=php:0]header('Location: http://www.mysite.com/index.php?page=confirm');[/code]


You want to make sure that there is no white space after the ?> in your connection.php or you will get the error [b]Cannot modify headers blablabla[/b]
Link to comment
Share on other sites

  • 2 months later...
header doesn't work at all in my .php files. It just won't redirect, even when using an empty-like .php file:

[code]<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Mail form</title>
</head>

<body>
<?php
header("Location: http://www.google.com");
?>

</body>
</html>[/code]
How come my 'header' just won't redirect?

I tried:
- http://nl2.php.net/manual/en/function.header.php
location starts with capital letter
- http://www.google.com/
- google.com
- www.google.com
- single and double quotes
- right in the end/ begin of <body> tag

So maybe something in the php.ini/ httpd.conf to be set?
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.