HTML - How Do You Create Content Counter?
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. Similar TutorialsHi, as the title says, I am wondering if there is a way to include the content of a link in the page itself. example: this is a regular link to a html page: <a href="next.html">next</a> let's say I don't want the file next.html, is there a way to include the content of next.html somewhere and refer to it from the page directly? I am not sure I am explaining this well, so I'll say it again: I want to be able to put several html files in one file, meaning I click on links for pages defined in the same html file I am viewing. (this is for use with a tab system in iframes generated dynamically from a database) As an exemple, if we use an iframe, you can include html code between <iframe>html code here</iframe> directly without using src, so I guess we can do the same for just about any link? for sure this can be done, but can it be done in html or do I have to use javascript or something? thank you I am making a website and need to display some web content in several dozen parts of the page. The web content is made up of php scripts, and I don't really want to have to make copies of it all over the place, so I was hoping to use frames. A simplified example of what I want to do is this: I have a website at example.com, now I have a subdomain at a.example.com. I want a.example.com to look exactly the same as example.com (I want to be able to navigate through a.example.com exactly the same way I would through example.com). None of my links are absolute (ie. they're all /this/is/a/subdir), so I assume this is possible. Can someone point me in the right direction here please? I'm not new to html or php but have never used frames before. i want to create a button in html and when i click it i want to see an image but i want to see this image in a new window. how can i do it? 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 Hey 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'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. 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. 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 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. 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. 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 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? 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 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! 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! 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. 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 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 |