Buyrun bu kodları inceleyiniz;
<?php
//Eş ve Yakın Anlamlı Kelimeler Sözlüğü için çalışır.
$dictionary_address = "http://www.tdk.org.tr/index.php?option=com_esanlamlar&arama=esanlam";
$word = "araç";
function between($bas, $son, $yazi)
{
@preg_match_all('/' . preg_quote($bas, '/') .
'(.*?)'. preg_quote($son, '/').'/i', $yazi, $m);
return @$m[1];
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$dictionary_address);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "keyword=".$word);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$server_output = curl_exec ($ch);
$server_output = between("<td align=center class='keyword'>", "</table>", $server_output);
$server_output = "<table border=1><tr><td>".$server_output[0].'</table>';
echo $server_output;
curl_close ($ch);
?>