Anyway, this is how you post data with curl:
curl -d "param1=value1¶m2=value2" http://myhost.com/server.cgi
This is mainly somewhere for me to dump interesting tidbits of tech info. Stuff that I may forget but will need again in the future. For a proper blog, visit my electronics blog (http://www.fangletronics.com) or my wife's pre-school crafty blog (http://www.filthwizardry.com).
curl -d "param1=value1¶m2=value2" http://myhost.com/server.cgi
INSERT INTO faketable(blob1, name, bitfield) values(b'001011101', "Beeblebrox", b'1');
SELECT name, HEX(blob1), BIN(bitfield) from faketable;
+--------------------+--------------+----------------+
| name | HEX(blob1) | BIN(bitfield) |
+--------------------+--------------+----------------+
| Beeblebrox | 005D | 1 |
+--------------------+--------------+----------------+