• Ogłoszenie:

How can i log user's logout time?

Wszystko odnośnie tworzenia grafiki - obróbka, problemy, oceny.
Tworzenia Stron internetowych - HTML, PHP, MySQL...

How can i log user's logout time?

Postprzez TorhanPiper 10 Maj 2023, 07:01

reklama
Hi everyone, I'm currently working on a school website and I need assistance with logging a user's logout time in my database. Here's the code I've written so far (please forgive any indentation errors, as I'm using a mobile device):

(Note: The column in the database is named "LOdatetime" and the table is named "Users")
Could you please advise me on how to correct my code so that I can successfully log the user's logout times in the database table? Thank you in advance!
TorhanPiper
~user
 
Posty: 9
Dołączenie: 04 Maj 2023, 09:44



How can i log user's logout time?

Postprzez MitchelBraybh 15 Maj 2023, 06:15

Hi everyone, I appreciate your help. I'm currently working on a school website and I need assistance with logging a user's logout time in my database. Here's the code I've written so far:

import datetime
import mysql.connector

# Connect to the database
db = mysql.connector.connect(
host="localhost",
user="username",
password="password",
database="yourdatabase"
)

# Get the current time
logout_time = datetime.datetime.now()

# Retrieve the user's ID or any unique identifier
user_id = "your_user_id"

# Prepare the SQL query
query = "UPDATE Users SET LOdatetime = %s WHERE user_id = %s"

# Execute the query
cursor = db.cursor()
cursor.execute(query, (logout_time, user_id))

# Commit the changes and close the connection
db.commit()
db.close()
Please make sure to replace "localhost," "username," "password," "yourdatabase," and "your_user_id" with the appropriate values for your setup.

With this code, the user's logout time will be recorded in the "LOdatetime" column of the "Users" table in your database. Let me know if you have any further questions or issues. Thank you!
MitchelBraybh
~user
 
Posty: 15
Dołączenie: 25 Sty 2023, 10:54



How can i log user's logout time?

Postprzez poppy12 30 Maj 2023, 10:38

If you have any spare time, I recently discovered an amazing game called: fall guys that you can join and play with me if you have one.
poppy12
~user
 
Posty: 18
Dołączenie: 12 Gru 2022, 05:57




Powróć do Grafika & Webmastering

Kto jest na forum

Użytkownicy przeglądający to forum: Brak zarejestrowanych użytkowników oraz 2 gości