Javascript-форум (https://javascript.ru/forum/)
-   Серверные языки и технологии (https://javascript.ru/forum/server/)
-   -   Передача переменной из JS в PHP (https://javascript.ru/forum/server/85764-peredacha-peremennojj-iz-js-v-php.html)

Grasss 17.02.2024 02:03

Передача переменной из JS в PHP
 
fetch('https://ipwho.is/?format=json')
.then(d => d.json())
.then(d => document.querySelector('#ip').innerHTML = d.ip);


<div id="ip"></div>


и есть часть php, которая записывает в лог

$rot=$_SERVER['HTTP_REFERER'];
$date=date('d.m.Y|G:i:s');
$log=fopen("info.txt","a+");
fwrite($log,"|$rot|$date|\n");
fclose($log);


как передать значение переменной #ip из js, в php для записи в лог?
или передать содержимое внутри <div id="ip"></div> в php...

Nexus 17.02.2024 16:35

fetch('https://ipwho.is/?format=json')
    .then(d => d.json())
    .then(res => {
        return fetch('/<your-php-script-address-here>', {
            method: 'post',
            headers: {
                'content-type': 'application/json'
            },
            body: JSON.stringify(res),
        });
    });


PHP:
$receivedIP = $_POST['ip'] ?? null;

Grasss 17.02.2024 18:52

fetch('https://ipwho.is/?format=json')
    .then(d => d.json())
    .then(res => {
        return fetch('ind2.php', {
            method: 'post',
            headers: {
                'content-type': 'application/json'
            },
            body: JSON.stringify(res),
        });
    });



<div id="ip"></div>


ind2.php
$receivedIP = $_POST['ip'] ?? null;
$rot=$_SERVER['HTTP_REFERER'];
$date=date('d.m.Y|G:i:s');
$log=fopen("info.txt","a+");
fwrite($log,"|$rot|$date|$receivedIP|\n");
fclose($log);


примерно так? или что-то еще нужно добавить, чтоб работало?

Nexus 17.02.2024 21:42

Grasss, примерно так


Часовой пояс GMT +3, время: 03:38.