Redirect Page with HTML meta tag

Posted by Shek on June 19, 2010 under HTML | Be the First to Comment

We could redirect webpage by using HTML meta tag. The syntax of the meta is:
Read more of this article »

Refresh page with PHP function header()

Posted by Shek on December 25, 2008 under PHP | Be the First to Comment

Editor’s note: In my past post Redirect page using PHP function header(), I talked about how to redirect page with header() function. To refresh a page, by using the same function and redirect to the page to itself, then it has the refresh effect.

Read more of this article »

HTML form – submit to a new window

Posted by Shek on July 8, 2008 under HTML | Be the First to Comment

We use HTML form a lot for the user to input data and process those data from a PHP file, but with the standard code of a HTML form:

Read more of this article »

Redirect page using PHP function header()

Posted by Shek on May 21, 2008 under PHP | Be the First to Comment

In some cases, you might like to redirect the user to another page from a certain page, example like when the website is under maintenance then you might like to redirect the user once they reach the home page to a maintenance notification page. To do so, there is a function in PHP could do the job. It is the header() function and the way to for redirecting a page is like this:
Read more of this article »