Answer the question
In order to leave comments, you need to log in
I read from the database and write again the text in Russian. Result - ???. What can be wrong?
I do it like this:
$rez_products = $parser_mysqli->query('
SELECT *
FROM `'.CATS_TABLE.'`
WHERE 1
');
while($link = $rez_products->fetch_object())
{
//echo $link->name.'<br>';
var_dump($parser_mysqli->query('
UPDATE `'.CATS_TABLE.'`
SET `name` = "'.$link->name.'"
WHERE id = "'.$link->id.'"
'));
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question