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"]
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.