require_once ('lib/simple_html_dom.php');
require_once ('lib/phpQuery.php');
require_once ('lib/curl_query.php');
require ('lib/db.php');
$html = curl_get('имя сайта');
$dom = str_get_html($html);
$news = $dom->find('.soc-news li');
foreach ($news as $new)
{
$tobd = array();
$a = $new->find('a', 0);
$tobd['name'] = $a->plaintext;
$one = curl_get('имя сайта' . $a->href);
$one_dom = str_get_html($one);
$content = $one_dom->find('.content', 0);
$tobd['content'] = $content->plaintext;
$query = 'INSERT INTO `pro`(name, content) VALUES ("' . $tobd['name'] . '", "' . $tobd['content'] . '")';
$result = mysqli_query($link, $query);
if($result) // и здесь меняешь на result
{
echo 'Запись добавленна';
}
else
{
echo 'Ошибка добавления';
}