I am using Simple HTML Dom to scrape keywords off remote web pages but I can't figure out quite how to achieve this.
I am currently using the following code.
$html = str_get_html($remote_html);
echo $html->find("meta[keywords]")->content;
And receiving the following error:
Trying to get property of non-object
$remote_htmlcontains keywords? – relentless Jul 24 '12 at 21:01echo $html->find("meta[keywords]");– relentless Jul 24 '12 at 21:08