Hello,
I have a problem!
From a very large string (inserted by a post of an html form) I have to create a blob to insert it in an interbase table:
Here the code:
echo ($text);
// for debugging I display $text and I see that it's the same large string that I inserted by the form (in a textarea)
$blob_id = ibase_blob_create();
ibase_blob_add($blob_id, "$text");
$blob_id_str = ibase_blob_close($blob_id);
ibase_blob_echo($blob_id_str);
//for debugging I display the content of the blob and I see that it's not the same large string but only a little part of it!!!
The string is very large but blob should have to work!!!
The next insert query to the database works but the inserted blob is only 10% of my large string!!!
Any solution?
Thanks
a.gambino@abramo.it