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
Post a Comment