MySQL bin2hex insert onto table
How to convert binary to hex on MySQL befor insert data to database
$query = "INSERT INTO table_name (blobfield) VALUES ('".bin2hex($blobfield)."')";mysql_query($query);
Thank you
ref: php bin2hex
MySQL bin2hex insert onto table
How to convert binary to hex on MySQL befor insert data to database
$query = "INSERT INTO table_name (blobfield) VALUES ('".bin2hex($blobfield)."')";mysql_query($query);
Thank you
ref: php bin2hex
Comments
Post a Comment