Posts by jgrocha • 121 points
2 posts
-
1
votes1
answer158
viewsA: How to record what is received on an Apache port directly in mysql?
Apache implements the HTTP protocol. If your application speaks HTTP, you can talk to APACHE. On the server side, Apache can forward the message to a CGI (in Python, Perl, etc.) or to a language…
-
1
votes2
answers1632
viewsA: How to get the <a> tag inside a <DIV, using XPATH?
You can add a new query only with //a/@href, or change the query to return two sets of nodes, using the operator '|' //*[@class='item'] | //a/@href Then you have to adjust the cycle foreach,…