sql >> Base de Datos >  >> RDS >> Mysql

Llame a una función miembro find () en un no objeto al insertar datos usando PHP mySQL simpleHTMLDOM

No creo que puedas usar find() en simple_html_dom() .

Prueba esto:

$data = new simple_html_dom();  
$data->file_get_html($url);
$profName = $data->find("//*[@id=profName]", 0);

Este enlace proporciona un excelente ejemplo básico.