Mysql
 sql >> Database >  >> RDS >> Mysql

Come analizzare in PHP e archiviare nel database?

Vuoi $es->innertext e non $es .
Prova questo codice:

$html =file_get_html('http://www.espncricinfo.com/rankings/content/current/page/211271.html');
$es = $html->find('td[class=left]',37);
$query = "UPDATE my_table SET Column1='".$es->innertext."' WHERE Column2=123;";