We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For example jodel.php contains the following code:
jodel.php
if(isset($_GET['upvotejodel'])){ //.... if(!$voted){ //.... else { $_SESSION['errorMsg'] = "Already voted"; } header('Location: https://jodel.domayntec.ch/jodels.php'); } // ... /.... f(isset($_SESSION['errorMsg'])) { ?> <div class="alert alert-danger" role="alert"> <strong>Holy guacamole!</strong> <?php echo $_SESSION['errorMsg'];?> </div>
So we need to clear the php $_SESSION['errorMsg'] after each time it's displayed, or find another soloutin....
php $_SESSION['errorMsg']
The text was updated successfully, but these errors were encountered:
bug because now, the messages is displayed until a user logs out
Sorry, something went wrong.
@CloudyWuff you said, you will check this with JS
Clodmony
No branches or pull requests
For example
jodel.php
contains the following code:So we need to clear the
php $_SESSION['errorMsg']
after each time it's displayed, or find another soloutin....The text was updated successfully, but these errors were encountered: