it has been a while since my last time working with iframes, now i need to load some external sites inside iframes but nothing is happening. This are the iframe tags, the wierd thing is that nothing is being shown inside this iframes. Is there something that im missing?
for ($j = 1; $j < 10; $j++) {
$urls[] = 'http://www.facebook.com/profile.php?id='.$friends["data"][$j]["id"];
}
echo '<div class="container"><div class="row-fluid">';
foreach($urls as $url){
echo '<iframe id="face" name="face" src="'. $url .'" style="width: 100%; height: 200px;"></iframe><br>';
}
echo '</div></div>';
}
Each $url is a friend's facebook profile and they are being loaded perfectly fine but nothing is being shown inside my iframes. Any ideas? i also tried with google.com... same thing, nothing is being shown.