| TOTAL: 7 Page: 1 of 1 |
|
PHP Browser Redirect Tutorial
A situation may come up when you want to redirect a user depending on what browser they are using. Below in a simple script that you can add to any PHP page that will redirect a user depending on what broswer they are using.

| Hits: | 12 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-08-17 |
PHP redirect page
In this tutorial I will show you how to redirect pages in PHP. You can find all important aspects and code examples about PHP redirecting.

| Hits: | 22 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-07-18 |
Redirect function with permanent 301 redirect support
Here is an example of simple function ae_redir() for HTTP redirect. It supports relative site paths and permanent(seo-compatible) redirects. There is also function ae_redir_die() which stops execution of script after sending redirect.

| Hits: | 10 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-06-08 |
Redirecting a Page using PHP
Redirecting a page in PHP is an easy task. You can use the PHP Header method to redirect a visitor to a new page. The header() method is used to send HTTP headers back to the browser. The headers can be sent back to the browser only if there's no content or error messages shown in the page.

| Hits: | 131 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Dynamic Links
This tutorial will show you how you can acheieve dynamic URL's, this is one method of transfering data across pages. The URL isn't always the best choice for transfering data across pages because it you can copy and paste it and also save it as a bookmark, but it is good for including pages or displaying function blocks. The type of URL we are going to create is like this index.php?act=home, its very easy to get this and only takes a few lines of code.

| Hits: | 66 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Automatic Page Refresh
In this tutorial we'll see how to refresh a page after a preset amount of time (usually seconds or minutes). Functions like this are used in big portals to automatically refresh the home page (or subpages) in order to give always updated news.

| Hits: | 59 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
PHP Redirect
A PHP Redirect automatically transfers a web user from one URL to another. For example, typing foo.com in the browser automatically transfers the user to another URL bar.com.

| Hits: | 128 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Browser Redirect
Alright, this is a simple little script which will take you to one page if you're using Internet Explorer, and another page if you're using some other browser. Lets decide what this is going to do in English: 1. If the browser is MicroSoft Internet Explorer (MSIE), then go to spoono.com 2. If the browser isn't MSIE, then redirect to yahoo.com

| Hits: | 72 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
How to tempt Google to index your Site despite redirection
Googlebot (Google's Spider) doesn't follow the "http/1.1 302 Found" status code (resource temporarily moved). Instead you should use a "http/1.1 301 Moved Permanently" header to make Google follow the redirect. To make the long story short: If you're using PHP to do the redirect (and many are using PHP these days) you should add the status code header manually because PHP sends a 302 Found status code by default. This stops Google and therefore is only usefull if your site is really under ma

| Hits: | 67 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |
Redirecting the Web Browser with PHP
This is an immediate redirection with PHP.This must be called before any output is sent to the user's browser or you will recieve "header location" errors.

| Hits: | 117 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-10 |