New to Arduino, I'm trying to make a web interface to "configure" the board.

I'm very new to Arduino and basically what I've done is I've connected an ethernet shield to the board and I'm trying to make something like a configuration web page ( similar to the stuff you get when you type in your router's IP address into the browser but obviously much simpler )movies download movies at forum

I've seen the Webserver example in arduino but I thought it was a bit tedious to type in everything in a client.println() line. Still, I did manage to control the arduino that way with no problems. But let's say I want to create a somewhat appealing webpage, this means that I'll certainly have to use libraries, but I can't see how I can do that if most tutorials tell me to simply throw everything in client.println().

Please excuse my ignorance but I would really appreciate it if someone can point me to a full tutorial on how to do that because I'm certain there are many of those, I just can't seem to find any unfortunately!

on Ethernet shield you have a SD card adapter. you can put static files (html, js ,css) on SD card and serve them with webserver. and then the pages can request JSON data with XmlHttpRequest. but Uno has not enough memory for this because the Ethernet library and SD library take it all.

example from my project