python

Python Project – Online Quiz Management – Add Edit Delete

The following code will allow you to: -Enter (insert) new quizzes -Modify (Update) existing ones -Delete quizzes you don’t want. (Click image to see it in action – login with “demo” and “123”) Click here for the main project link #!/usr/bin/python print “Content-type: text/html\n\n” print “<html>” print “<head>” print “<title>Enter Quizes</title>” print “</head>” print “<body>” […]

Continue Reading

How To Insert Python In Your HTML Page

In order for you to include python in your html applications you first need to have python running on your webserver. Since most webservers, like Hostgator, are installed with some flavor of Linux, python should already be there. Hostgator, by the way, was the easiest webhost to get my python scripts up and running on. […]

Continue Reading