ボタンをクリックするだけでアイテムをツイートするものを作っているのを見てください。
アイテム パーツのスニペットを次に示します。
$arr = json_decode(file_get_contents("http://media1.clubpenguin.com/play/en/web_service/game_configs/paper_items.json"),true);
$elements = array_slice($arr, $page * $elementsPerPage, $elementsPerPage);
foreach($elements as $item)
{
$label = $item['label'];
$id = $item['paper_item_id'];
}
$cpitems = array("Check out the $label at http://www.cpcheatsdojo.info/SWFViewer/items.swf?id=$id [$random]");
それがスニペットです。問題は、ボタンをクリックすると同じアイテムがツイートされることです。ツイートのランダムアイテムを作ろうとしています。