HTML - Online Users Counter
hiya,i have a msn group and it doesn't support java scripts i searched on google tried a lot of webcounters but they are all with java ..
is it possible to have an users counter without any java ?? just simple html.Thanks in advance ! *love - Elise Similar TutorialsHey guys, I found a counter on the web, and tried to reconfigure it to what i need. the weirdest thing has happened, and I don't understand it. maybe someone can tell me logically what it means...so heres the code: Let me also explain what i am trying to do. as a user, I want make it start a counter when I go to domain.com/index.php. if i go to another website (within the same domain), the ip addresss is stored. I want to make it so that this counter will not increase when the same ip address goes back to index.php <?php if (file_exists ('count_file.txt') && ($ipone != $iptwo) /*So here, I wanted to set the following: the if statement is TRUE if the two conditions are met: count_file.txt exists, AND $ipone DOES NOT EQUALS $iptwo==== now heres what baffled me. This IF statement is executed when $ipone actually EQUALs $iptwo.. I made the opposite change where instead of != it becomes ==, and this IF statement wasn't executed.*/) { $iptwo = $_SERVER['REMOTE_ADDR']; echo $iptwo; /*Just here so that I can debug my problem*/ echo $ipone; /*This was just here so I can debug my problem*/ $fil = fopen('count_file.txt', r); $dat = fread($fil, filesize('count_file.txt')); echo $dat+1; fclose($fil); $fil = fopen('count_file.txt', w); fwrite($fil, $dat+1); } else if (file_exists ('count_file.txt') == NULL) { $fil = fopen('count_file.txt', w); fwrite($fil, 1); echo 'else if'; /*This was just here so I can debug my problem*/ fclose($fil); } else { /*Here I don't have to do anything.. didn't know if "break;" would work, so instead i just left this as is.*/ $fil = fopen('count_file.txt', r); echo ('else'); fclose($fil); } ?> Hello, I'm trying to create a counter on HTML that actually counts and say Page 1 of 30. Can you please tell me the code to put it on. Thanks I would like to show that my message board has a new post on my main page. Or maybe just the number of views of my message board shown on my main page. The message board I use is guestbook.cgi Thanks Rick Hi; How do you put in a letter counter on a web page. I make custom embroidery patches. As the person types in the text for the patch, I need to be able to count the number of key strokes and from that count be able to direct to the right page. How can this be done. I can do alittle coding but not very good at it yet. If there is someone out there that can help, I will be happy with any help I can get. Thanks. The instructions say to insert two chunks of code into your page. ''You just need to insert two chunks of code into your page. Place this within your HEAD section...'' (where is the head section in the INDEX.html file??, is that on the top) Here is what the code looks like. First ''chunk'' <!-- Start MegaCounter HEAD tag code --> <SCRIPT language="JavaScript"><!-- /***********************************************************\ MegaCounter v1.1 A "configurable" hit counter for the rest of us... by Joe Barta http://www.pagetutor.com/megacounter/ \***********************************************************/ text_string = "visitors since 9/5/98"; txt_color = "#000000" // Text string color counter = 587113; // Counter starts at this, revision = 1; // Every time you alter your initial counter value (above), you must also change the revision number. page_code = 1; // Unless you want every page to use the same counter, you'll need to use a different page code for each page. hitsperday = 2000; // How many hits per day you want. bg_color = "#222222" // Background color of counter fg_color = "#66FF66" // Foreground color of counter link_color = "#0000FF" // Color of link back (Powered by MegaCounter) back_color = "#FFFFFF" // Color of white space in counter area //--></SCRIPT> <SCRIPT language="JavaScript" SRC="http://www.pagetutor.com/megacounter/generic_cookie_1yr.js"></SCRIPT> <SCRIPT language="JavaScript" SRC="http://www.pagetutor.com/megacounter/megacounter.js"></SCRIPT> <!-- End MegaCounter HEAD tag code --> And here is the other ''chunk'' <!-- Start MegaCounter BODY tag code --> <SCRIPT language="JavaScript"><!-- document.write("<TABLE CELLSPACING=\"0\" CELLPADDING=\"0\" BORDER=\"0\" BGCOLOR=\"" + back_color + "\"><TR>"); document.write("<TD BGCOLOR=\"" + bg_color + "\"><FONT FACE=\"andale mono,arial\""); document.write("COLOR=\"" + fg_color + "\"><B> " + counter + "</B></FONT></TD>"); document.write("<TD><FONT SIZE=\"2\" COLOR=\"" + txt_color + "\" FACE=\"arial,helvetica\"> " + text_string + "</FONT></TD>"); document.write("</TR></TABLE>"); //--></SCRIPT> <!-- Start MegaCounter BODY tag code --> I pasted this in the index.html file, but then no counter showed up on my website. I must be doing somsthing wrong, please advise. Thank you. Hi all My Site is hosted on linux site and i have basic cgi scripts for page counters, but does anyone know how i can create a download counter for files which can be made visible to users. I want the content to be updates live on the site ( basic count per click ) http://www.pellapushers.co.uk/mashups.html Is this possible with html code or should i be looking at cgi Regards, Alan I've made a hit counter for my website and need a bit of help in HTML to get it to work. There are 3 files: One SWF file One PHP file and One TXT file All three of these files are in a web folder. What I want to do is get it to work on Blogger. I've successfully embedded the SWF file into it which shows the hit counter but need the TXT file and PHP file to load along with the SWF (and to change the TXT file in the web folder). Is this possible to do with some HTML code? Any help would be greatly appreciated Just ask if you need a bit more information. EDIT: The problem has been solved, for anyone who has the same problem the solution is easily solved by using the <iframe> </iframe> tag. Just add a src, width or whatever else you need in it. I've had a simple php counter on a web page for years. Now I change the webpage and put the counter html on it just like before and this time it doesn't work! Could this be something to do with the new page being xhtml instead of html? Or because this time there's already a 'javascript' section whereas before there wasn't? Or what? The page is at http://greenpepper.org if anyone would care to look. the html line is right at the bottom of the page, just before </body> and the line itself is: <script language="Javascript" src="counter.php"><!--//--></script> The php counter code is very simple, too, it is: <? $filename = "count.txt"; $fp=fopen("$filename","r"); $count=fread($fp, filesize("$filename")); fclose($fp); $count++; $fp=fopen("$filename","w+"); fwrite($fp,$count); fclose($fp); // Use this line below if you like to use this counter to count hits in a PHP file. //echo "This page has been visited $count times."; // Use this line if you like to use this counter to count hits in a HTML file. You also need to add a code in your HTML file. See the guide for details. echo "document.write('$count');"; ?> The text file is still there in the directory, I checked everything by running the old file again and it runs the counter okay. ok, first, how do i make a counter? then also, if ive got something like: <a href="bla.html">bla</a> <!--counter here--!> how do i make the counter go to how many times people clicked on that link? Hi guys, I am new here and i'm dutch so sorry for my bad language I have a question and i hope u guys can help me with it. I have searched for a script that can show the money we have from donations in a little counter on a website. It can be html or php, i searched for ages for this script and i can't find anywere!! Thnx alot for the help! Greetz, Marlboro / Bouwe I need to create a web counter that doesn't track hits, but increases by 1 every 8 seconds. I have some experience with HTML, but no experience with Java. I'm not sure how to create this. Does anybody else? if the 1st vote button is hitted twice then if i hit 2nd vote button so it jumps to 3 instead of 1 ....please help i m doing this for my college ...not a project just ......doingit !! HTML Code: <html> <head> <title>U Compare</title> <script><!-- var Clicks = 0 ; function AddClick(){ Clicks = Clicks + 1; document.getElementById('CountedClicks').innerHTML = Clicks + ' votes'; } // --></script> <script><!-- var Clicks = 0 ; function AddClick1(){ Clicks = Clicks + 1; document.getElementById('CountedClicks1').innerHTML = Clicks + ' votes'; } // --></script> </head> <body> <H1 align="center"><I>WELCOME 2 U-COMPARE</H1> <HR COLOR="RED" SIZE="10" width="50%" NOSHADE> <img src="ab.jpg" style="margin-left:400px"align="down" alt="Pulpit rock" width="250" height="400" /> <span id="CountedClicks">0 vote</span><br> <button style="background-color:white"; ; onclick="AddClick()">vote</button> <table cellspacing="15" border="0" cellpadding="0"> <td width="700"></td> <td width="3" height ="700" bgcolor="RED"><BR></td> <td width="150" valign="DOWN" align="right"> </td> </tr> </table> <img src="tiesto.jpg" style="margin-left:400px"align="bottom" width="250" height="400" /> <span id="CountedClicks1">0 vote</span><br> <button style="background-color:white"valign="top" onclick="AddClick1()">vote</button> <!-- begin htmlcommentbox.com --> <div id="HCB_comment_box"><a href="http://www.htmlcommentbox.com">HTML Comment Box</a> is loading comments...</div> <link rel="stylesheet" type="text/css" href="http://www.htmlcommentbox.com/static/skins/simple/skin.css" /> <script type="text/javascript" language="javascript" id="hcb"> /*<!--*/ if(!window.hcb_user){hcb_user={};} (function(){s=document.createElement("script");s.setAttribute("type","text/javascript");s.setAttribute("src", "http://www.htmlcommentbox.com/jread?page="+escape((window.hcb_user && hcb_user.PAGE)||(""+window.location)).replace("+","%2B")+"&opts=406&num=10");if (typeof s!="undefined") document.getElementsByTagName("head")[0].appendChild(s);})(); /*-->*/ </script> <!-- end htmlcommentbox.com --> <table cellspacing="15" border="0" cellpadding="0"> <td width="700"></td> <td width="3" height ="700" bgcolor="RED"><BR></td> <td width="150" valign="DOWN" align="right"> </td> </tr> </table> </body> </html> How do I display how many views a page has had on another page? So if I had a homepage and an about page how do I display how many views the about page has had on the homepage? Its a script site, has an admin login area, no ***tion to add a counter. However, there are some free counters out there that have the code to copy and paste, but where do I input the code, can I paste it in the style css file? Thanks for your help I need to know the html code to preset a bin counter to start at a certain number, say 5100. My page was shut down and now I want to move it to another site and start the counter at it's previous setting. Any help appreciated. Thanks. Ok, new to the boards here. I'd appreciate some help regarding a website i am building. I have a question due to my lack of advanced html knowledge, but am a quick learner. Does anyone know how to build a quality visitor counter? I know they have the free one's online, but i want something that integrates well into the site and looks like it belongs there. I'm sure i'll have some more questions later. Website: http://www.niufans.com/cpg/albums/Re...Red%20Riot.htm Thank you! Hi folks, I am totally new to HTML and I've managed to create a basic webpage with a table of contents since starting only yesterday. I want to try and add a counter to the end of each content item based on how many records are displayed on the page. For instance: Contents Group A-B (10) Group C-D (24) Group E-F (0) Can this be done in HTML or maybe incorporate some Javascript within HTML? I've searched all over this forum for something similar but keep getting page hit counters or visitor counters. Does anyone have specific code, a suggestion or a recommendation to tackle this? Any replies are welcome. Thanks. Naik. Hi guys, I am new to the web design scene and I am attempting to build a simple website. The website will consist of a few pages however for the matter at hand lets pretend there are just 2: index.html & download.html I want to put a counter on index.html that will count how many times people visit download.html... it will be apart of the following sentence: Code: This file has been downloaded by x people x of course is the integer that needs to change. Really my question is: How do I do this? And can someone show me with a tutorial etc? Thanks! basically, im trying the find the specific URL web address for the webcounter on my myspace page so i can enter it into a script and artificially boost it. only problem is, i can't seem to do it. http://profile.myspace.com/index.cfm...ndid=112544176 thats the address to my page and the counter is currently on 526. i have already found the web address for my plays which can be found on the following page... http://mediaservices.myspace.com/ser...hx?b=112544176 its the addresses at the bottom that start 'url=http://media.myspace....' i understand that all myspace pages load themselves from a database but is there any way to find out what address it loads for the VIEWS counter? maybe there is a program that anyone knows about that can track EVERY url address a page requests when opening. please help! Hi, I would like to display a counter below an image which shows how many times it's been clicked and viewed. Could someone possibly help me with some code to do this. Thanks Simon |