How to transfer db

Начинающий
Статус
Оффлайн
Регистрация
21 Фев 2021
Сообщения
7
Реакции[?]
3
Поинты[?]
0
I am trying to transfer my HWID from the database to my
Пожалуйста, авторизуйтесь для просмотра ссылки.
. but I don't know where I'm going ...
could any good soul help me?
 

Вложения

Последнее редактирование модератором:
Начинающий
Статус
Оффлайн
Регистрация
24 Май 2020
Сообщения
197
Реакции[?]
25
Поинты[?]
0
Начинающий
Статус
Оффлайн
Регистрация
21 Фев 2021
Сообщения
7
Реакции[?]
3
Поинты[?]
0
I love you man, there's only one problem, which line do you put this code in? Sorry, I'm still a layman.
I don't know where I put this :(
 

Вложения

Начинающий
Статус
Оффлайн
Регистрация
24 Май 2020
Сообщения
197
Реакции[?]
25
Поинты[?]
0
I love you man, there's only one problem, which line do you put this code in? Sorry, I'm still a layman.
I don't know where I put this :(
PHP:
while ($row = $result->fetch_assoc())
{
    if( trim(strlen($row['hwid'])) > 1)
    {
        if($hwid != $row['hwid'])
        {
            echo "0"; // Wrong
        }else{
            echo "1"; // Correct
            break;
        }

    }
}
In this code you just stop cycle when found needed hwid.
 
Сверху Снизу