On 04 Feb 23:19, James Bensley wrote:
As far as I am aware you can't have python or perl as a server side scripting language. You may want to look at CGI/Perl scripts however for processing parsed data. You can use Perl in this sense. For example you can have a HTML form submit its data to a Perl script on the server which can then process the parsed information as required (for example, saving it to a file).
Erm, so you've never heard of mod_perl or mod_python, then... though most people use fcgi for perl or wsgi for python, because they're a better seperation and generally better performance.