ヘルフレンズ
ここからレース結果を取得する必要があります
"http://www.drf.com/race-results/BHP/USA/2012-06-23/D"
データベースに保存したいので、レース1、レース2、レース3などのすべてのレコードを取得する必要があります
このコードを使用しているが、ページ全体が表示されていることを提案してください。特定の情報のみが必要です
<?php
$ch = curl_init();
//Fetch the timeline
curl_setopt($ch, CURLOPT_URL, 'http://www.drf.com/race-results/BHP/USA/2012-06-24/D');
//send data via $_GET
//curl_setopt($ch, CURLOPT_GET, 0);
//do not return the header information
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
//If SSL verification is needed. Delete if not needed
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
//Give me the data back as a string... Don't echo it.
//curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//Warp 9, Engage!
$content = curl_exec($ch);
//Close CURL connection & free the used memory.
curl_close($ch);
?>