RE: [PHP] Store uploaded files in MySQL-BLOB

2001-07-10 Thread Ben Bleything
Message- From: Tom Gitzinger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 10, 2001 2:39 AM To: [EMAIL PROTECTED] Subject: [PHP] Store uploaded files in MySQL-BLOB Hi friends, could anybody tell me how I best store one or several uploaded files in a MySQL database (as a BLOB). I use PHP 3

[PHP] Store uploaded files in MySQL-BLOB

2001-07-10 Thread Tom Gitzinger
Hi friends, could anybody tell me how I best store one or several uploaded files in a MySQL database (as a BLOB). I use PHP 3. Let's say I have the variable $userfile. Is it possible to simply insert this into the database? $query = "INSERT INTO ... (file) VALUES (" . $userfile . "); By the