@zumore

Как вставить переменную в file_get_contents?

Здравствуйте, у меня не получается вставить переменную в file_get_contents

Побывал различные варианты, типа обеднение, вставки различных переменных, но ничего не помогает. Данная функция не хочет брать переменную в счет.

При загрузке страницы баланс показывается, но при нажатии на кнопку 'Обновить', выдает ошибку, ссылку записывает без токена в переменной

Файл update.php:
$info = file_get_contents('https://******/api/balance/get?api_token='.$_SESSION['z']['token']);
$info = json_decode($info, true);
echo 'Баланс: <span style="color:yellowgreen">'.$info[data][balance].'</span> | <span style="color:darkred">'.$info[data][frozen].'</span>';
print_r($_SESSION['z']['token']);

Подключение файла в основной директиве
<div id="up" style="margin: 0 5px"><?php include "include/update.php" ?></div>
    <button id="upClick" class="whiteButton">Обновить</button>
<script type="text/javascript">
    $("#upClick").click(function(e){
        e.preventDefault();
        $("#up").load('include/update.php');
    });
</script>
  • Вопрос задан
  • 261 просмотр
Пригласить эксперта
Ответы на вопрос 1
@galaxy
Куку кто ставит? Если ставится не в корне сайта (/), надо path прописывать

path
The path on the server in which the cookie will be available on. If set to '/', the cookie will be available within the entire domain. If set to '/foo/', the cookie will only be available within the /foo/ directory and all sub-directories such as /foo/bar/ of domain. The default value is the current directory that the cookie is being set i

https://www.php.net/manual/en/function.setcookie.php
Ответ написан
Комментировать
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы