D
D
dollar2020-01-16 18:18:52
PHP
dollar, 2020-01-16 18:18:52

Where do the numbers at the end of the filename come from?

Shared folder in google drive.
On the first device, the file is overwritten (replaced). Let it be file.txt
As a result, the file disappears on the second device (windows 7), and file(1).txt appears instead.
I would understand if the file was not deleted, then this can not be replaced on the first device. But the original file is gone. This is not the first time, and the picture is the same every time.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
S
Sergey Kotov, 2019-04-04
@liqrizz

Write in head <meta charset="utf8">

E
Evgeny Ivanov, 2019-04-05
@logpol32

As said above.
Database connection

$mysqli = new mysqli($hostname, $username, $password, $first_base);
//Настройки соединения
$mysqli->query("set character_set_client='utf8'");
$mysqli->query("set character_set_results='utf8'");
$mysqli->query("set collation_connection='utf8_general_ci'");

It seems to me, or do you have a base in cp1251 encoding, and the Users table in utf8?
Choose one encoding and do everything in it.

D
Dimonchik, 2020-01-16
@dimonchik2013

here what?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question