forked from Cavemanon/snootgame.xyz
11 lines
217 B
Python
Executable File
11 lines
217 B
Python
Executable File
#!/usr/bin/python
|
|
import cgi
|
|
import cgitb
|
|
cgitb.enable()
|
|
storage = open("views.txt", 'r+')
|
|
curNum = int(storage.read())
|
|
storage.close()
|
|
curNum = curNum + 1
|
|
storage = open("views.txt", 'w+')
|
|
storage.write(str(curNum))
|