You use the POST method instead of the GET method, the server must allow it tho.

Its a bit beyond me how to do it with sockets, easy with a http form just change the <form method=get> to <form method=post> but again the server side must accept that type as well.

Below is an estimate of what to do ONLY.

In sockets i believe its like changing from a GET below....

sockwrite -n $sockname GET /somefolder/somepage.php?name=value&name2=value2&name3=value3 HTTP/1.1
sockwrite -n $sockname Host: somedomain.com
sockwrite -n $sockname $crlf

to a POST below

sockwrite -n $sockname POST /somefolder/somepage.php HTTP/1.1
sockwrite -n $sockname Host: somedomain.com
sockwrite -n $sockname $crlf
sockwrite -n $sockname name=value&name2=value2&name3=value3

I may well be completely wrong on this tho frown