Hello so basically I want to update a date in MySQL but to make the thing done in php form like:
<?php
$sql = "UPDATE users
set expire_date=CURRENT_DATE + INTERVAL 30 DAY
WHERE email='" . $_SESSION['user_email'] . "'";
?>
Sorry If I described my question weirdly but Its important for my project, any help appreciated!