Italian 
 

Keyword Research Blog

Frank's top 20 Free Press Release Distribution Sites

FREE Press releases distribution sites.

Spam links DO NOT hurt your ranking

google webmaster tool new API

How Google PR works from a Google employee

Facebook can be used for SEO

duplicate content issue - google view

Google Buys Russian Contextual Ad Service For $140 Million

comScore June 2008 Search Search

Magento on MediaTemple too slow

 

PHP code example:

$ch = curl_init();
$value = 'http://www.wordsfinder.com/api_traffic_code.php';
curl_setopt($ch, CURLOPT_URL, $value);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

curl_setopt( $ch, CURLOPT_POSTFIELDS, 'country=US&user=YOUR_API_KEY&word='.$word);  
$xml = curl_exec($ch);
curl_close($ch);

Test Post form

The following is a simple form that posts 2 values : the fist is the type = basic and the second is input box content:

<form action="http://www.wordsfinder.com/api_traffic_code.php" method="post" enctype="multipart/form-data" name="form">
<input name="word" type="text">
<input name= "country" type="hidden" value="US" >
<input name= "user" type="hidden" value="YOUR_API_KEY" >
<input name="submit" type="submit" value="Find traffic" />
</form>