Welcome to Code Forum!

Join a community that supports you and your coding journey from day one. We strive to be a friendly, supportive community that empowers everyone to be better developers. By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

session

  1. oezilot

    Python Flask: KeyError 'data' when fetching data from Jikan API

    Hi everyone, I'm running into a KeyError: 'data' when fetching data from the Jikan API in my Flask app. This used to work fine, and another program using the same API (also written by ChatGPT) is still functioning correctly, so the API itself should be working as expected. Here is the relevant...
  2. J

    PHP Can't pass a value through session

    If I pass the string trough session it perfectly works <?php session_start(); $_SESSION["firstname"] = "Peter"; $_SESSION["lastname"] = "Parker"; ?> <?php session_start(); echo 'Hi, ' . $_SESSION["firstname"] . ' ' . $_SESSION["lastname"]; ?> But if I pass a value inserted into the form...
Back
Top Bottom