web directoryearn money in seconds   Free file hosting, free video sharing

<<< The Web Hosting >>>


Go Back   Noeman GSM > Webhosting & Website development > Website development > Programming

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-05-2007, 10:09 AM
Spiral's Avatar
CO-Admin
 
Join Date: Sep 2004
Location: Martil
Age: 25
Posts: 15,630
Reputation: 18738
Spiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super MemberSpiral Mega Super Member
Default Refresh Page Automatically

Refresh Page Automatically
Redirect the page automatically using PHP. Very useful when Javascript may be disabled.

Refreshing the page has many uses. You could reload a news site or check for new content, maybe reload an ad where Javascript may be disabled on the browser, the possibilites are endless.

PHP Code:
$urlRefresh "thispage.php";
header("Refresh: 5; URL=\"" $urlRefresh "\""); // redirect in 5 seconds 
That was simple enough, using "header" we refresh the page. In this example that will happen after 5 seconds. You can use any time imaginable, the value is in seconds. For instance if you had a news site that was refreshed every 5 minutes, you would use this

PHP Code:
// 300 seconds is 5 minutes
60 300 
One thing to keep in mind is this code MUST be placed before html code, otherwise you will get an error message like this. Warning: Cannot modify header information - headers already sent by (output started at /path/of/server/otherpage.php:65) in /path/of/server/thispage.php on line 20

One way to solve this problem is to use the output buffering on this page. At the top of the first document place this php.

PHP Code:
ob_start(); // start output buffering
Then at the end of the last fileplace this
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-07-2007, 02:16 AM
Junior Member
 
Join Date: Dec 2005
Age: 23
Posts: 4
Reputation: 10
dara is on a distinguished road
Default

thank you, share knowleng to me
Reply With Quote
  #3 (permalink)  
Old 07-07-2007, 05:53 AM
mr.x's Avatar
Tech Team
 
Join Date: May 2007
Location: Gotham City
Posts: 1,276
Reputation: 10207
mr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Membermr.x Mega Super Member
Send a message via Yahoo to mr.x
Default

Thanks a lot, Spiral the Co-Admin.
__________________
U2.COM

Reply With Quote
  #4 (permalink)  
Old 07-28-2007, 04:43 PM
Echilon's Avatar
Master
 
Join Date: Apr 2007
Age: 20
Posts: 51
Reputation: 10
Echilon is on a distinguished road
Send a message via ICQ to Echilon
Default

I prefer META refresh
Reply With Quote
  #5 (permalink)  
Old 10-10-2007, 02:23 AM
Junior Member
 
Join Date: Oct 2007
Age: 26
Posts: 6
Reputation: 10
googleccd is on a distinguished road
Thumbs down Html

we need HTML refresh code !
where i can find these codes
Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 01:25 AM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.0
Copyright © 2004-2008 Noeman . All rights reserved
Literatura fantástica | Pay Day Loans | Credit Card Consolidation | Destin, Florida | Nach Baliye

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111