Hi;<br>I´m trying to figure out how to upload images into a MySQL database. (Yes, that is what I want to do.) I have a form that asks for data, like this:<br>1ra Foto Pequeña:<br><input type='file' name='pic1' /><br>
Then I send that form to a python script that processes like this:<br>cursor.execute('insert into products (' + col_names + ') values (' + col_values + ');')<br>where col_names is all the names of the columns and col_values, obviously, the values. Works fine for strings and digits. Not so well for files :) What do?<br>
TIA,<br>Victor