Answers for "tina4 save file to database in orm"

PHP
0

tina4 save file to database in orm

//Save a block on content to table , field name is content
$page->saveBlob("content", $request->params["content"]);
//Save an uploaded file to field name image, field type is longblob / blob in the database
$page->saveFile("image", "image"); //expecting $_FILES["image"]
Posted by: Guest on August-30-2020

Browse Popular Code Answers by Language