To Filter on port 80 and look at HTTP POSTS only:
tcp.port eq 80 and http.request.method eq POST
To find traffic on a specific host:
ip.dst == 17.19.4.32 or ip.src == 17.19.4.32
To find a string value in any packet:
frame matches "(?i)[STRING_VALUE]"