Posts by brunofcat • 21 points
3 posts
-
0
votes2
answers792
viewsQ: codeigniter - list related data
Hello, I’m trying to show the name of a channel associated with an event through a FK, but I can’t show it. Model: public function get_events() { $this->db->get('events');…
-
1
votes1
answer89
viewsA: Python - Convert mysql datatime
I decided to stop using the: strftime("%Y-%m-%d %H:%M:%S", gmtime()) then start using: datetime.datetime.now() current = datetime.datetime.now() for x in range(0,numrows): row = cursor.fetchone()…
-
1
votes1
answer89
viewsQ: Python - Convert mysql datatime
I am trying to compare the current date with the date of the last entry of my mysql database: sql2 = "SELECT created_at FROM tempaverage WHERE created_at IN (SELECT max(created_at) FROM…