Title: PHP Help how to redirect web pages automatically send
Description: php help how to redirect web pages automatically send PHP
Tags: php, help, how, to, redirect, web, pages, automatically, send
Info: This Post Has Been Viewed 781 Times SinceMon Dec 24, 2007 11:06 am Author hostman With 1 Replies #5633

PHP Help how to redirect web pages automatically send

if you are intersted in knowing how to redirect pages automatically in php, i will show you today.

lets say i have a webform and after all the information is done, i dont want to put a link on the page that says click here to continue but instead just redirect the user.

there are three ways you can do this, you can do it with javascrip or html or php

today im gonna show you with php, why php, because its server side scripting..

lets say i want to send all my users back to the main page this is what i would use:




header('Location: http://www.wallpaperama.com');


this will automatically send the user to our main page

just make sure that you dont send any html or text to the user's browse or put any html code before this fucntion

the following would create an error:


<html>
<?php
/* This will give an error. Note the output
 * above, which is before the header() call */
header('Location: http://www.example.com/');
?>


header() is used to send a raw HTTP header. See the » HTTP/1.1 specification for more information on HTTP headers.

Remember that header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP. It is a very common error to read code with include(), or require(), functions, or another file access function, and have spaces or empty lines that are output before header() is called. The same problem exists when using a single PHP/HTML file.

for more information about this, you can visit the php manual

header — Send a raw HTTP header
Comments (1)
View Top Comments
Leave Your Comments...
#1
waqas:
3 years ago
#63394
waqas Sat Jul 26, 2008 8:47 am
ok
where r u
r u f9
Share
| More