Tenias razon hermano, habia un error en la condicion.-
Intenta con este.. ya esta solucionado y testiado.-
Código PHP:
<?php
$URL = $_SERVER['HTTP_REFERER'];
$URL_IN = array("$URL");
$URLsAmigas = array(
'http://www.amigo1.com/',
'http://www.amigo2.com/',
'http://www.amigo3.com/',
'http://www.amigo4.com/',
);
foreach($URL_IN as $value)
foreach($URLsAmigas as $proceso)
if(substr_count($value, $proceso) > 0){$aprovar=1;}
if($aprovar!=1){
die("
<script>
if (parent.frames.length > 0) parent.location.href = self.document.location
</script>
");
}
?>
Saludos.-