Problem Trying to Reset Webserver Form Values

Crap...

I tried the meta refresh as one of the first attempts to fix it. Unfortunately Mr. Syntax kicked me in the under carriage. I forgot a ";" before "URL". I changed...

client.println(F("<META HTTP-EQUIV=REFRESH CONTENT=5 URL=http://192.168.0.31/>"));

to

client.println(F("<META HTTP-EQUIV=REFRESH CONTENT=5;URL=http://192.168.0.31/>"));

Now it's working pretty well. Thanks zoomkat!!