How to set the date value in a access dadat base

2009-03-20 Thread tedpot...@gmail.com
Hi, I got the following code access.Edit() access.Fields("customer").value= row["customer"] t=row["time"] print t access.Fields("Time").value=0.0 # time is a float value access.Fields("phrase").value= row["phrase"]

Cannot get POST to work

2009-09-29 Thread tedpot...@gmail.com
Hi, I'm trying to post data to a short test script in php I wrote. The python code to do the post is import httplib #server address conn = httplib.HTTPConnection("localhost") #file location conn.request("POST", "/programming/bots/test.php","&ted=fred") r1 = conn.getresponse() print r1.status, r1.