| | |
C++ CGI Unique & Raw Hit Counter
This code snippet actually contains a few nifty things. There are two functions, hasVisited() and main(). hasVisited() makes use of a very handy function for CGI programmers: getenv. You can see I use it to retrieve REMOTE_ADDR which is the person's IP address. In main() it gets the count from a file and increments if needed and outputs back to the same file. It then outputs a simple HTML page that the user sees.
#include <iostream> #include <fstream> #include <string> using namespace std; bool hasVisited() // Figure out wether unique hit or not // Returns true if ip address has visited { bool visited = false; string userIP = getenv("REMOTE_ADDR"); string nonUnique; ifstream input("iplist.cnt"); while (input) { // See if IP is in list getline(input, nonUnique); if (userIP == nonUnique) { visited = true; break; } } input.close(); if (visited == false) { // Add IP to list ofstream output("iplist.cnt", ofstream::app); output << userIP << endl; output.close(); } return (visited); } int main() { int uniqueHits; // Default in case no counter file exists int rawHits; ifstream in("counter.cnt"); if (!in) { uniqueHits = 0; rawHits = 0; } else { in >> uniqueHits; // 1st number = unique hits in >> rawHits; // 2nd number = raw hits in.close(); } bool visited = hasVisited(); rawHits++; if (!visited) uniqueHits++; ofstream out; out.open("counter.cnt"); out << uniqueHits << ' ' << rawHits; out.close(); cout << "Content-type: text/html" << endl << endl << "<HTML><BODY>" << endl << "This is a hit counter written in C++. <hr>" << endl << "Your IP address: " << getenv("REMOTE_ADDR") << "."; if (visited) cout << "(Not unique)"; else cout << "(Unique)"; cout << "<hr>" << endl << "Unique hits: " << uniqueHits << "<br>Raw hits: " << rawHits << endl; cout << "</BODY></HTML>" << endl; }
0
•
•
•
•
Has been taken care of, snippet modified to incorporate the change.
Thanks for notifying this, your help in the code snippet section is greatly appreciated.
Hope you find out more such bugs
Thanks for notifying this, your help in the code snippet section is greatly appreciated.
Hope you find out more such bugs

Similar Threads
- PHP hit counter (PHP)
- stat hit counter HELP (PHP)
- hit counter (Site Layout and Usability)
- Hit counter (JavaScript / DHTML / AJAX)
- Tut : Make Your-Self a IP Showing Siggy & hit counter (PHP)
| Thread Tools | Search this Thread |
addition api array base based binary bitmap c++ c/c++ char class classes code coding compile console conversion count delete deploy desktop developer directshow dll download dynamic dynamiccharacterarray email embed encryption error erroraftercompilation excel fail-thread file forms fstream function functions game getline givemetehcodez gmail graph gui header homework homeworkhelp homeworkhelper iamthwee ifstream input int integer java lib linkedlist linker loop looping loops map math matrix memory multiple news node output parameter pointer problem program programming project python random read recursion reference rpg std::coutwstring string strings temperature template test text text-file tree url variable vector video win32 windows winsock word wordfrequency wxwidgets




