- This topic is empty.
-
AuthorPosts
-
December 8, 2006 at 9:04 pm #718385
Anonymous
InactiveOf if someone can give me a step by step on how to do it in php ?
December 8, 2006 at 9:35 pm #718387Anonymous
InactiveI have read two good threads regarding this both at site point and webmasterworld.
The links are
xhttp://www.sitepoint.com/forums/showthread.php?t=440863
xhttp://www.webmasterworld.com/forum88/12322.htmKind Regards,
Nicolas Johnson
Toll Free 1-800-549-7407
MSN nicolas_1875 at hotmail dot comDecember 8, 2006 at 9:45 pm #718388
NetPalMemberI’d like to know if this jave code hides the links from google to have a pagerank more hight ?
what do you think ?
December 8, 2006 at 11:07 pm #718392Anonymous
InactiveThanks , but not what im looking for .
i used to have a piece of html code , where i inserted the image and link for each banner , then placed the code where i wanted the banners to appear , but i cant seem to remember it
December 8, 2006 at 11:34 pm #718394Anonymous
InactiveHere is what I use… Its very easy to use:
http://www.nettpokerguiden.com/random.rar
Download this…
thecode.php is containing the code you use whereever you want the random code to show…
random_one.txt is the fil where the random code is… (one code pr. line)
If you change the name of random_one.txt remember to change in random_one.php:
$random_content=”random_one.txt”;
to whatever you name the file…
Thats it! :notify:
December 11, 2006 at 2:36 pm #718539Anonymous
InactivemisterDH,
Thats a nice little script. Can I use it? Is it yours?
I installed it on my site, http://www.onlinepokersitereview.com , and would like to leave it there. But before I do I need to know that it is OK to use.
Thanks
December 12, 2006 at 8:42 am #718618Anonymous
Inactive// Start banner code
$codes = array(
“
“,
“
“,
“
“,
);
srand ((float) microtime()*1000000);
shuffle($codes);
$i=0;
$number=1; while(list(, $code) = each($codes)) {
if ($i>=$number) { break; }echo “
$header_content $code “;
echo ““;
$i++;
}
// End banner code
[/CODE]The above is what I use to rotate three header banners. You can add all the banners you want.
Hope this helps.[CODE]
// Start banner code
$codes = array(
“
“,
“
“,
“
“,
);
srand ((float) microtime()*1000000);
shuffle($codes);
$i=0;
$number=1; while(list(, $code) = each($codes)) {
if ($i>=$number) { break; }echo “
$header_content $code “;
echo ““;
$i++;
}
// End banner code
[/CODE]The above is what I use to rotate three header banners. You can add all the banners you want.
Hope this helps.
December 13, 2006 at 7:41 pm #718798Anonymous
Inactiveih82lose wrote:misterDH,Thats a nice little script. Can I use it? Is it yours?
I installed it on my site, http://www.onlinepokersitereview.com , and would like to leave it there. But before I do I need to know that it is OK to use.
Thanks
Well its not mine, but I downloaded it for free so I guess its ok you use it :la-de-da:
December 13, 2006 at 11:50 pm #718819Anonymous
InactiveLuke , thats the one , i just found my old copy of it saved on my pc .
thanks .
December 14, 2006 at 12:36 am #718823Anonymous
Inactiveheres the exact code i use , set up for 5 banners you can add as many as you want . be sure on the last banner you input leave off the last ,
-
AuthorPosts