hello friends, i want to know.. how to code a auto refresh.. like.. whenever soembody post shout in lavalair.. it gives a message.. "shout added successfully.. hom link" . but what i want.. i want to remove this note n want user to come on same place after posting the shout.
help abt refresh.
Collapse
X
-
use a meta tag to redirectCode:<meta http-equiv="refresh" content="5;url=where ever u want to redirect to">
Creator ofEpix.Mobi
Keep an Eye on us Big things coming soon!!!!
Need something for your site hit me up here
http://coding-talk.com/forum/main-fo...r-your-wapsite
-
Originally posted by Loony View Postuse a meta tag to redirectCode:<meta http-equiv="refresh" content="5;url=where ever u want to redirect to">
Comment
-
<meta http-equiv="refresh" content="5;url=where ever u want to redirect to">
see the red 5
Change that too 0 or 1Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
-
in your headersCreator ofEpix.Mobi
Keep an Eye on us Big things coming soon!!!!
Need something for your site hit me up here
http://coding-talk.com/forum/main-fo...r-your-wapsite
Comment
-
PHP Code:else if($action=="shout")
{
$shtxt = $_POST["shtxt"];
addonline(getuid_sid($sid),"Roaring","");
$pstyle = gettheme($sid);
echo xhtmlhead("Roar",$pstyle);
echo "<p align=\"center\">";
if(getplusses(getuid_sid($sid))<75)
{
echo "<img src=\"images/notok.gif\" alt=\"X\"/>You should have at least 75 plusses to Roar!";
}else{
$shtxt = $shtxt;
//$uid = getuid_sid($sid);
$shtm = (time() - $timeadjust) + $timeadjust;
$res = mysql_query("INSERT INTO ibwf_shouts SET shout='".$shtxt."', shouter='".$uid."', shtime='".$shtm."'");
if($res)
{
$shts = mysql_fetch_array(mysql_query("SELECT shouts from ibwf_users WHERE id='".$uid."'"));
$shts = $shts[0]+1;
mysql_query("UPDATE ibwf_users SET shouts='".$shts."' WHERE id='".$uid."'");
echo "<img src=\"images/ok.gif\" alt=\"O\"/>Roar added successfully";
}else{
echo "<img src=\"images/notok.gif\" alt=\"X\"/>Database Error";
}
}
echo "<br/><a href=\"121lists121.php?action=shouts&sid=$sid\">Back to Roar Full Version!!</a> ";
echo "<br/><br/><a href=\"index.php?action=main&sid=$sid\"><img src=\"images/home.gif\" alt=\"*\"/>";
echo "Home</a>";
echo "</p>";
echo xhtmlfoot();
}
where i put in this code?
Comment
-
in your headers like this
<doctype html
<head>
HERE
<title>Visit: Chat4u.mobi - The New Lay Of being a site of your dreams!
Visit: WapMasterz Coming Back Soon!
_______
SCRIPTS FOR SALE BY SUBZERO
Chat4u Script : coding-talk.com/f28/chat4u-mobi-script-only-150-a-17677/ - > Best Script for your site no other can be hacked by sql or uploaders.
FileShare Script : coding-talk.com/f28/file-wap-share-6596/ -> Uploader you will never regret buying yeah it mite be old now but it still seems to own others...
_______
Info & Tips
php.net
w3schools.com
Comment
Comment