Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
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.
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...
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...