Quote Originally Posted by SirDice
I'm not sure about these quotes
Code:
$insert_image=mysqli_query(
$db_connect,
"CALL Insert_Image
('$Image_Extension',
$House_ID);");
Try creating the query string in full before using it in mysqli_query. I have a sneaky suspicion you're sending $House_ID literally and not it's value.

Another way may be to use mysqli_prepare($db_connect,"CALL Insert_Image (?,?);"); and then mysqli_stmt_bind_param and mysqli_stmt_execute.

http://nl.php.net/manual/en/function...mt-execute.php
When I call a procedure, it does insert an image data into the table.

The only problem I encountered was that PHP just doesn't read the return value, which I am going to need to rename the image when storing it in the file directory :'(