Python In HTML

How To Make A Python Data Entry Form

In the next few posts I’m planning to show you all all the CRUD (Create, Read, Update, Delete ) concepts, and this one happens to be the create aspect. I’m more than likely going to be changing this form as I need to, but this form has all the necessary qualities to create new providers […]

Continue Reading

Simple Python Variables Examples

In this post I am going to show you 2 simple ways of using variables in your python html files. The 1st way is using a text, string, variable #!/usr/bin/python msg=’Python Text Variable.’ print “Content-type: text/html\n\n”; print “<html><head>”; print “<title>Simple Python Text Variable</title>”; print “</head><body>”; print “<p>” + msg + “</p>”; print “</body></html>”; Here is […]

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