'.$page.': '.$target.'

'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $target); curl_setopt($ch, CURLOPT_USERPWD, $login); curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $gettwit = curl_exec($ch); $twitters = new SimpleXMLElement($gettwit); foreach ($twitters->status as $twit) { echo '', $twit->text, "
\n"; echo 'Author: ', $twit->user->name, "\n"; echo 'Date: ', $twit->created_at, "
\n"; } curl_close($ch); $page++; sleep(1); } ?>