View Single Post
  #3 (permalink)  
Old 2006-07-04, 12:32 PM
flann flann is offline
Member
 
Join Date: Jun 2006
Posts: 55
flann is on a distinguished road
Default

I've gotten in the good habit of always listing the fields that I want to insert into, this practice eliminates a lot of bugs.

PHP Code:
INSERT INTO table (field1field2field3)
       
VALUES ('$var1''$var2''$var3'); 
__________________
flann
Free Mortgage Calculator | Debt Free
Reply With Quote