Yapmak istediğim şu, atıyorum yol /bakbi.php bakbi.php girildiğinde ben, instagram son takipçilerini listeletiyorum adamın.
Kodum şu ;
<?php
$follow_info = file_get_contents('https://api.instagram.com/v1/users/'.$uid.'/followed-by?access_token='.$utoken.'');
$follow_info = json_decode($follow_info);
$latest = 0;
for ($i = 1; $i <= 27; $i++) {
++$latest;
$name = $follow_info->data[$latest]->full_name;
$usern = $follow_info->data[$latest]->username;
$ppicture = $follow_info->data[$latest]->profile_picture;
echo '
<div id="giren">
<a href="http://instagram.com/'.$usern.'" title="'.$usern.'" target="_blank"><img src="'.$ppicture.'" alt="'.$full_name.'" width="70" height="70" /></a>
</div>
';
}
?>Kodum budur, fakat şunu istiyorum;İlk önce bir resim ekleyiceğim bu resim dönerek yada fark etmez her neyse, yaklaşık 15-20 saniye kadar bekleyecek, daha sonra bu kodu çalıştırıcak ve benim yazdıgım kod devreye girecek.