prepare($sqlQuery);$recipesStatement->execute();$r">
Hello, I would like to be able to display the registration date of users after January 25, 2022 But my query always shows the same date
$sqlQuery = 'SELECT * FROM _users WHERE user_registered > "2022-01-25"'; $recipesStatement = $bdd->prepare($sqlQuery); $recipesStatement->execute(); $recipes = $recipesStatement->fetchAll(); // On affiche chaque date une à une foreach ($recipes as $recipe) { ?>