Help! Print values eeprom on web sever.

Hi Guys!
I use an IR sensor to count people and i want to show the value counted from eeprom on the web.
But it does not appear on the web.
Please help me!
This is my code:

#include <SPI.h>
#include <Ethernet.h>
#include <EEPROM.h>
// MAC address from Ethernet shield sticker under board
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
IPAddress ip(192, 168, 0, 76); // IP address, may need to change depending on network
EthernetServer server(80);  // create a server at port 80

boolean LED_status = 0;   // state of LED, off by default
int button = 2;
int pirPin1 = 28; 
int counter;
int laststate1 = HIGH;
int address =1 ;
int f;
//float f = 0.00f; 
String readString;
void setup()
{
    Ethernet.begin(mac, ip);  // initialize Ethernet device
    server.begin();           // start to listen for clients
    Serial.begin(9600);       // for diagnostics
    pinMode(6, OUTPUT);       // LED on pin 2

pinMode(button, INPUT_PULLUP);
pinMode(pirPin1, INPUT);
delay(1000);
}


char linebuf[80];
int charcount=0;
boolean authentificated=false;
void loop()
{
    EthernetClient client = server.available();  // try to get client

    if (client) {  // got client?
      memset(linebuf,0,sizeof(linebuf));
    charcount=0;
    authentificated=false;
        boolean currentLineIsBlank = true;
        while (client.connected()) {
            if (client.available()) {   // client data available to read
                char c = client.read(); // read 1 byte (character) from client
                if (readString.length() < 100) {
          //store characters to string
          readString += c;
          //Serial.print(c);
        }
        linebuf[charcount]=c;
        if (charcount<sizeof(linebuf)-1) charcount++;
        Serial.write(c);
       //         HTTP_req += c;  // save the HTTP request 1 char at a time
                // last line of client request is blank and ends with \n
                // respond to client only after last line received
                if (c == '\n' && currentLineIsBlank) {
                  
                    // send a standard http response header
                    client.println("HTTP/1.1 200 OK");
                    client.println("Content-Type: text/html");
                    client.println("Connection: close");
                    client.println();
                    // send web page
                    client.println("<!DOCTYPE html>");
                    client.println("<html>");
                    client.println("<head>");
                    client.println("<title>Arduino Control</title>");
                    client.println("</head>");
                    client.println("<body>");                 
                    client.println("<a href=\"/?relay1on\"\">Click here </a>");                             
                    if(readString.indexOf("?relay1on") >0)//checks for on

                     {
                      int buttonStatus = digitalRead(button); 
                       if (buttonStatus == HIGH) { // Nếu mà button bị nhấn
                       int state1 = digitalRead(pirPin1);
                       if ( laststate1 == LOW && state1 == HIGH) 
                               {
                              counter++;
                      EEPROM.write(address, EEPROM.read(address)+1);
               f = EEPROM.read(address)+1;
              //    Serial.println(EEPROM.read(address));
              //   client.println(EEPROM.get(address,f));
                  }
              laststate1 = state1;
                }  else { 
            counter =0;
          EEPROM.write(address, 0);
           Serial.println(EEPROM.read(address));
              delay(200);
               } 
                     client.print("<p>");
        client.print("Numbers people=");
         client.println(EEPROM.get((address),f));
         client.print("</p>");
          }
                     

                     readString="";
                    client.println("</body>");
                    client.println("</html>");
        //            Serial.print(HTTP_req);
          //          HTTP_req = "";    // finished with request, empty string
          delay(1);
          //stopping client
          client.stop();
                                               
                }
                // every line of text received from the client ends with \r\n
                if (c == '\n') {
                    // last character on line of received text
                    // starting new line with next character read
                    currentLineIsBlank = true;
                    
                } 
                else if (c != '\r') {
                    // a text character was received from client
                    currentLineIsBlank = false;
                }
            } // end if (client.available())
        } // end while (client.connected())
        delay(1);      // give the web browser time to receive the data
        client.stop(); // close the connection
    } // end if (client)
}

But it does not appear on the web.

    f = EEPROM.read(address)+1;
              //    Serial.println(EEPROM.read(address));
              //   client.println(EEPROM.get(address,f));

Gee, I wonder why. You don't suppose the fact that you commented out the code to make that happen has anything to do with why it doesn't happen, do you?

it displays when i use by Serial.println -function , but now i want it can be display on web.

but now i want it can be display on web.

How? Do you just expect to see 14 show up somewhere in a browser? Having a text field, read-only, containing some text, is trivial. Having a label with some specific text is easy. Expecting the browser to read your mind? Not so easy.

Sir! How to can slove this problem?
I want it can print value the number people in room from eeprom or don't have eeprom.

Take a look at any web page that is showing data. Right click and select "View Source". LOOK at how the data is displayed. PICK A STYLE and send the data with the appropriate html tags. I can't tell you how because you won't say how you want to present the data. "Somehow, I don't care" is the WRONG answer.

I just want the show to be the number of people who impact on the sensor only.
For example: "The people in the room = 114"

Below is a section of code that shows how to embed values in a web page.

          //generate data page
          if(readString.indexOf("data") >0) {  //checks for "data" page
            x=x+1; //page upload counter
            client.print("<HTML><HEAD>");
            //meta-refresh page every 1 seconds if "datastart" page
            if(readString.indexOf("datastart") >0) client.print("<meta http-equiv='refresh' content='1'>"); 
            //meta-refresh 0 for fast data
            if(readString.indexOf("datafast") >0) client.print("<meta http-equiv='refresh' content='0'>"); 
            client.print("<title>Zoomkat's meta-refresh test</title></head><BODY>
");
            client.print("page refresh number: ");
            client.print(x); //current refresh count
            client.print("

");
            
              //output the value of each analog input pin
            client.print("analog input0 is: ");
            client.print(analogRead(analogInPin0));
            
            client.print("
analog input1 is: ");
            client.print(analogRead(analogInPin1));
                        
            client.print("
analog input2 is: ");
            client.print(analogRead(analogInPin2));
            
            client.print("
analog input3 is: ");
            client.print(analogRead(analogInPin3));
                                    
            client.print("
analog input4 is: ");
            client.print(analogRead(analogInPin4));
            
            client.print("
analog input5 is: ");
            client.print(analogRead(analogInPin5));
            client.println("
</BODY></HTML>");
           }