I want to make a little script that returns me a result depending of how much a ip has been blacklisted. Result must be like \[code\]23/100\[/code\] means that 23 has blacklisted that ip or \[code\]45/100\[/code\] \[code\]2/100\[/code\] ... and so on.First of all i fetch trough CURL from http://whatismyipaddress.com/blacklist-check sending a post request some data :\[code\]<?php/** * Get a web file (HTML, XHTML, XML, image, etc.) from a URL. Return an * array containing the HTTP server response header fields and content. */function get_web_page($url,$argument1){ $options = array( CURLOPT_RETURNTRANSFER => true, // return web page CURLOPT_HEADER => false, // don't return headers CURLOPT_FOLLOWLOCATION => true, // follow redirects CURLOPT_ENCODING => "", // handle all encodings CURLOPT_USERAGENT => "Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 (FM Scene 4.6.1)", // who am i CURLOPT_AUTOREFERER => true, // set referer on redirect CURLOPT_CONNECTTIMEOUT => 120, // timeout on connect CURLOPT_TIMEOUT => 120, // timeout on response CURLOPT_MAXREDIRS => 10, // stop after 10 redirects CURLOPT_POST => 1, CURLOPT_POSTFIELDS => "LOOKUPADDRESS=".$argument1, ); $ch = curl_init( $url ); curl_setopt_array( $ch, $options ); $content = curl_exec( $ch ); $err = curl_errno( $ch ); $errmsg = curl_error( $ch ); $header = curl_getinfo( $ch ); curl_close( $ch ); $header['errno'] = $err; $header['errmsg'] = $errmsg; $header['content'] = $content; return $header;}echo "<pre>";$result = get_web_page("http://whatismyipaddress.com/blacklist-check","75.122.17.117");// print_r($result['content']);// in $result['content'] we have the whole pag// Creating xpath and fill it with data$doc = new DOMDocument();libxml_use_internal_errors(true);$doc->loadHTMLFile($result['content']); // loads your html$xpath = new DOMXPath($doc);// Get that table$value = http://stackoverflow.com/questions/12662013/$xpath->evaluate("string(/html/body/div/div/div/table/text())"); echo "Table with blacklists: [$value]\n"; // prints your locationdie;?>\[/code\]Now what i want is to parse the data with XPATH \[code\]/html/body/div/div/div/table/text()\[/code\] and where i see the image \[code\](!)\[/code\] mark it as blacklisted, otherwise do nothing.Can anyone help me?I also observed that vewing the \[code\](!)\[/code\] image requires a token, i might switch to another site, but i like that particular website because it has all the websites.Thank you!