Other way to updating a BLOB in php -


is there other way update blob in php? other using form tag.

$db = ... $select = $db->query("select pic tbl_pics id = 1 "); $row = mysqli_fetch_assoc(#select);  $pic = $row['pic'];  $updatepic = $db->query("update tbl_pics set pic = '$pic' id = '2' "); 


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -