Chefao
Member
- Apr 30, 2017
- 45
- 27
I'm making a tool to see the latest habbo furniture like a fan site but I never can, how do they do it?
I've tried PHP=curl, PHP=file get contents, but it never works
I've tried PHP=curl, PHP=file get contents, but it never works
PHP:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://www.habbo.com/gamedata/furnidata_xml/f6a4ed5273c975e70a74becfd411367de0d56240");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_USERAGENT,$_SERVER['HTTP_USER_AGENT']);