I want to store
Binary_data (eg. files, pictures)
into a table that I name binary_data
However..
I know I need some columns to do this.
I got a script (I believe it was
from Daarius) to do this with.
sybase_QUERY( "INSERT INTO binary_data (description,bin_data,filename,filesize,filetype) ".
"VALUES ('$form_description','$data','$form_data_name','$form_data_size','$form_data_type')");
As I understand I need:
Description (I can use Varchar)
bin_data (Have no idea)
filename (no idea)
filesize (no idea)
filetyps (no idea)
Is there anyone that knows
what to do..
And if so?, can you help me?
I already have a form where
you input: Desciption and
another one where you input the file.
/Chess