<!--#echo var= Web Hosting, website hosting, web site hosting , web page hosting Apache, PHP, MySQL, PERL, servlets Java, JSP " height=1 src="../images/im_spacer.gif" width=125> <!--#echo var= Web Hosting website hosting, web site hosting, web page hosting Apache, PHP, MySQL, PERL, servlets Java, JSP,Python" height=1 src="../images/im_spacer.gif" width=53> <!--#echo var= Web Hosting website hosting, web site hosting, web page hosting Apache, PHP, MySQL, PERL, servlets Java, JSP,Python" height=1 src="../images/im_spacer.gif" width=407> <!--#echo var= Web Hosting website hosting, web site hosting, web page hosting Apache, PHP, MySQL, PERL, servlets Java, JSP,Python" height=1 src="../images/im_spacer.gif" width=43> <!--#echo var= Web Hosting website hosting, web site hosting, web page hosting, Apache, PHP, MySQL, PERL, servlets Java, JSP,Python" height=1 src="../images/im_spacer.gif" width=150>
/"><!--#echo var= Web Hosting, website hosting, web site hosting, web page hosting, Apache, PHP, MySQL, PERL, servlets Java, JSP, Python" border=0 height=100 width=78 src="../images/jumpingPC.gif" > <!--#echo var= Web Hosting, website hosting, web site hosting, web page hosting, Apache, PHP, MySQL, PERL, servlets Java, Python,JSP" height=29 src="../images/top_arc.gif" width=53>
<!--#echo var= Web Hosting Sign-Up" height=25 src="../images/topsignup_off.gif" width=150> Web Hosting Sign-Up" height=25 src="../images/topsignup_off.gif" width=150> NOTE from dennis ...... Also remove the signup from ../cgi-bin/whois.pl --> /fundraising/index.shtml" onmouseover="turnOn('topfund')" onmouseout="turnOff('topfund')"> <!--#echo var= Fund Raising, Fundraising, web hosting, website hosting, web site hosting" height=25 src="../images/topfund_off.gif" width=150> /reseller/index.shtml" onmouseover="turnOn('topreseller')" onmouseout="turnOff('topreseller')"> <!--#echo var= Resellers web hosting, website hosting, web site hosting" height=25 src="../images/topreseller_off.gif" width=150> /techsupport.shtml#EZ Control" onmouseover="turnOn('topcp')" onmouseout="turnOff('topcp')"><!--#echo var= EZ Site Control Panel for web hosting,website hosting, web site hosting" height=25 src="../images/topcontrolpanel_off.gif" width=150>
<!--#echo var= Web Hosting, website hosting, web site hosting , web page hosting Apache, PHP, MySQL, PERL, servlets Java, Python,JSP, Fundraising" height=75 src="../images/top_hdhp_1_18_07.gif" width=593>
<!--#echo var= Fund Raising, Fundraising, web hosting, website hosting, web site hosting" height=1 src="../images/im_spacer.gif" width=126>
/whois.shtml" method=GET> WWW.

Call Us Toll-Free
(877) 256-0328

/index.shtml" onmouseover="turnOn('welcome')" onmouseout="turnOff('welcome')"> <!--#echo var= Welcome"> /plans_overview.shtml" onmouseover="turnOn('overview')" onmouseout="turnOff('overview')"> <!--#echo var= Web Hosting Plans Overview , Fund Raising, Fundraising, web hosting, website hosting, web site hosting"> /fundraising/index.shtml" onmouseover="turnOn('fundraising')" onmouseout="turnOff('fundraising')"> <!--#echo var= Fund Raising, Fundraising, web hosting"> /reseller/index.shtml" onmouseover="turnOn('reseller')" onmouseout="turnOff('reseller')"> <!--#echo var= Resellers, web Hosting"> /webdesign.shtml" onmouseover="turnOn('webdevel')" onmouseout="turnOff('webdevel')"> <!--#echo var= Web Design, web Hosting"> /extraservices.shtml" onmouseover="turnOn('extra')" onmouseout="turnOff('extra')"> <!--#echo var= Extra Services, web Hosting"> /sitestudio/index.shtml" onmouseover="turnOn('sitestudio')" onmouseout="turnOff('sitestudio')"> <!--#echo var= Traffic Booster, web hosting"> /trafficbooster.shtml" onmouseover="turnOn('trafficbooster')" onmouseout="turnOff('trafficbooster')"> <!--#echo var= Traffic Booster, web hosting"> /techsupport.shtml" onmouseover="turnOn('support')" onmouseout="turnOff('support')"> <!--#echo var= Technical Support, web Hosting"> /tips/index.shtml" onmouseover="turnOn('webmastertips')" onmouseout="turnOff('webmastertips')"> <!--#echo var= webmaster tips, web Hosting"> /moneybackpolicy.shtml" onmouseover="turnOn('a30day')" onmouseout="turnOff('a30day')"> <!--#echo var= 30 Day Money Back, web hosting"> /legal.shtml" onmouseover="turnOn('legal')" onmouseout="turnOff('legal')"> <!--#echo var= Legal Notices for Web Hosting"> /glossary.shtml" onmouseover="turnOn('glossary')" onmouseout="turnOff('glossary')"> <!--#echo var= Glossary Computer Terms for web Hosting"> /contact.shtml" onmouseover="turnOn('contact')" onmouseout="turnOff('contact')"> <!--#echo var= Contact Information - web hosting">

/sitemap.shtml">Site Map
<!--#echo var= Web Hosting, website hosting, web site hosting , web page hosting Apache, PHP, MySQL, PERL, servlets Java, Python, JSP" src="../images/im_spacer.gif" width=5> <!--#echo var= " height=1 src="../images/im_spacer.gif" width=1> <!--#echo var= " height=1 src="../images/im_spacer.gif" width=1> <!--#echo var= " height=1 src="../images/im_spacer.gif" width=5> <!--#echo var= " height=1 src="../images/im_spacer.gif" width=5> <!--#echo var= " height=1 src="../images/im_spacer.gif" width=700>
[an error occurred while processing this directive]

Web Hosting Tips for Webmasters -
PHP Redirect

PHP Redirect

By Sanjib Ahmad | On June 15, 2005

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.

The PHP Redirect command:

<?php header("location: [some-url]"); ?>

Replace [some-url] with the URL where you want the redirection to take place.

For example,

header("location: ./version2/index.html");

=>redirect to "index.html" page in subfolder called "version2" header("location: http://www.yahoo.com");

=>redirect to a website called yahoo.com

If PHP is not available, it's also possible to use other redirects:

* HTTP Redirects

<meta http-equiv="Refresh" content="[time]; URL=[some-url]">

Replace [time] with seconds. This will pause the browser for the specified number of seconds. Replace [some-url] with the target URL you want to redirect.

For example,

<meta http-equiv="Refresh" content="5; URL=http://www.yahoo.com">

The above HTTP based redirect needs to be in the

region of the HTML code.

* JavaScript Redirects

<script language=javascript> setTimeout("location.href='[some-url]'", [time]); </script> Replace [time] with milliseconds. This will pause the browser for the specified number of seconds. Replace [some-url] with the target URL you want to redirect.

For example,

setTimeout("location.href='http://www.yahoo.com'", 5000);

The above JavaScript based redirect can be either in the <header></header> or <body></body> region of the HTML code.

Usually a PHP redirect is much more reliable than other form of redirects like HTTP redirect or JavaScript based redirects. For example a JavaScript redirect may not work if a user's browser settings has JavaScript turned off.

The reason why PHP redirects will work no matter what settings users have on their browser is because PHP is server side script. It will not depend on browser settings that may affect JavaScript which is parsed on the client-side/user-side.

For more articles on this topic and others visit http://www.article-directory.net

 
 
 

/RSSfeed.xml">Add to My Yahoo!

/RSSfeed.xml">XML icon

/RSSfeed.xml">Add to Google

 

 

 

 

 

 

 

 

 

 

 

JSP Servlets Tomcat mysql Java JSP Servlets Tomcat mysql Java JSP Servlets Tomcat mysql Java JSP Servlets Tomcat mysql Java JSP at JSP.aldenWEBhosting.com Servlets at servlets.aldenWEBhosting.com Tomcat at Tomcat.aldenWEBhosting.com mysql at mysql.aldenWEBhosting.com Java at Java.aldenWEBhosting.com Web Hosts Portal Web Links Web Links Web Hosting JSP Solutions Web Links JSP Solutions Web Hosting Servlets Solutions Web Links Servlets Solutions Web Hosting Web Links Web Links . . .
.
.
.
.
. .
. . . . . . . . . . . jsp hosting servlets hosting web hosting web sites designed cheap web hosting web site hosting myspace web hosting