Uno + Ethernet Shield to PHP

char server[] = "192.168.0.2/TA/user_room.php";

This returns non-existent domain using nslookup. If you use the "char server[]", it performs a dns lookup first. That domain does not resolve.

This does not do the dns resolution. It uses the ip directly.

IPAddress server(192,168,0,2);