|
Well you can't place an actual file into a mysql table, although you can read the contents of the file and place that into it, or insert a link to the file into the database, have to decide which of those two you'd want to do first.
If you want to put the files contents into it I would use fread() or file_get_contents().
|