How to use XML-RPC metaWeblog.newPost properly with PHP?

梦想的初衷 提交于 2019-12-01 01:34:29
include "remotepost.class.php";
$content['title'] = $_POST['title'];
$content['categories'] = $_POST['category'];
$content['description'] = $_POST['description'];

changes to

$content['categories'] = array($_POST['category']); 

It must be an array, it took my all night, i guess i have read more than 200 pages for this lol, gooooogled

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!