this part of code im using to Display the entries in the database on index.html
JavaScript
x
4
1
people = db.execute("SELECT * FROM birthdays")
2
3
return render_template("index.html", name = people)
4
birthday database
JavaScript
1
7
1
CREATE TABLE birthdays (
2
id INTEGER,
3
name TEXT,
4
month INTEGER,
5
day INTEGER,
6
PRIMARY KEY(id)
7
and this is the html code i use to display the name, the month , and day
JavaScript
1
7
1
{% for people in name %}
2
<tr>
3
<td>{{ people["name"] }}</td>
4
<td>{{ people["month"] }} / {{people["day"]}}</td>
5
</tr>
6
{% endfor %}
7
can someone explain if i have assign
JavaScript
1
2
1
people = db.execute("SELECT * FROM birthdays")
2
and the variable name = people
whats the logic behind this loop ?
JavaScript
1
2
1
{% for people in name %}
2
Advertisement
Answer
I recommend you to learn python and flask structure first.
JavaScript
1
2
1
people = db.execute("SELECT * FROM birthdays")
2
SELECT *(mean all) will show u all records in birthday column.
JavaScript
1
2
1
{% for people in name %}
2
for loop provides all records in the people variable to be displayed on jinja.