RE: [PHP] Insertion of integer in a database

2005-03-23 Thread Chris W. Parker
david joffrin on Wednesday, March 23, 2005 1:01 PM said: > So, I only had strings, but now I have introduced a timestamp column > (bigint to cover the milleseconds) Why not use VARCHAR instead? Timestamp doesn't need to be numeric does it? For sure it's not required

Re: [PHP] Insertion of integer in a database

2005-03-23 Thread Joseph Connolly
I don't think the integer is the problem, but if it is you can turn time() into a variable and then, $time = time(); david joffrin wrote: Hi folks, Problem is fairly simple, but how can I insert integer in an SQL statement? So, I only had strings, but now I have introduced a timestamp column