我设置了一个简单的php脚本,通过以下URL查询将信息放入MySQL数据库:
https://www.thesite.com/addinformation.php?WHERE_TO_LABEL_IT_AS&WHAT_TEXT_TO_ADD“
我只是使用wget
从bash中调用它wget --no-check-certificate --user=username --password='password' --delete-after https://www.thesite.com/addinformation.php?$LABELVARIABLE&$STRINGVARIABLE"
它适用于我的需求,但我现在想用类似的方法将大块文本添加到数据库中。甚至可能是整个文本文件。你会建议我采用什么方法来做这个?
答案 0 :(得分:1)
您可以将内容保存到文件中,然后使用 wget 或 curl 发布。
$ wget --post-file=<file path>
或
$ curl --data-binary @<file path>