i'm kind of new with php and i'm trying to upload some details into a database but it includes an image, something like this:
sql = "
INSERT INTO fileform
(`FirstName`
,`LastName`
,'IMAGE'
) VALUES ('?', '?', '$fileName')";
mysqli_stmt_bind_param($stmt, "ss", $firstname, $LastName).
On the second line of the codes above, i know that s-strings,i-integer,b-boolean etc, what do i use as the datatype for the image file?