Greg Corradini wrote:
>
>I'm trying to implement something very simple without using a Python
>WebFramework and I need some advice. I want to send a comma delimited string
>from the client to a server-side Python script. My initial plan was to use a
>JavaScript function (see below) called "makereq
if(xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
obj.innerHTML = xmlhttp.responseText;
}
}
xmlhttp.send(data);
}
--
View this message in context:
http://www.nabble.com/Simple-CGI-request-and-Python-reply-tp22952274p22952274.h