system
1
Hi, anyone can tell me how pass this html code from the Arduino to the micro sd card of ethernet shield?
cliente.print("HORA ATUAL: ");
if (hour<10)
cliente.print("0");
cliente.print(hour);
cliente.print(":");
if (minute<10)
cliente.print("0");
cliente.print(minute);
cliente.print(":");
if (Second<10)
cliente.print("0");
cliente.print(Second);
cliente.println("
");
Thanks... 
system
2
Hi, anyone can tell me how pass this html code from the Arduino to the micro sd card of ethernet shield?
That isn't "html code". That is code that sends data to a client.
The code to send the same data to an SD card looks exactly the same, except that client is replaced by the file instance, once you've opened a file.
Peter_n
3
Take out the SD card and connect it to a computer. Create a file on the computer and write it to the SD card 
When you want to write the time to a file, you can use the same 'print' and 'println'.
See the examples for the SD library.