> I want to let users upload a image file (jpg or gif or any binary file) > from browser and save these files into one column of a table, how can i > implement it ? Use the 'bytea' column type. You must properly escape the binary data before inserting it tho. There are functions in PHP's postgres module to do this. Chris