Added uebung07

This commit is contained in:
2019-06-24 10:15:01 +02:00
parent b4acf257f6
commit 2dedd578a4
10 changed files with 162 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/usr/bin/python3
import cgi
import cgitb
cgitb.enable()
form = open("doggu.html", "r").read()
print("Content-type: text/html\n")
print(form)
print('<a href="posts-show.py">Zeig mir alle Posts!</a><br>')
print('<a href="tags-show.py">Zeig mir alle Tags!</a>')