[insert_php]
$xmlFeed = ‘http://promo.mulherescoroas.com/feed/xml?site_id=813354&s[country]=PT&s[location_id]=661&s[sex_id]=1&language=pt&s[age_min]=18&s[age_max]=99&s[priority]=l,s,w,h,c’; //enter your xml feed’s url here instead of “$_REQUEST[‘xml’]”
if ($xmlFeed!=”” && !false == file_get_contents($xmlFeed) )
{
$xml = simplexml_load_file($xmlFeed);
// if ($xml->count()) // para php > 5.3
if (count($xml->children()))//alteração para php < 5.3
{
$model = '
‘;
$gender=”;
$i=1;
foreach ($xml as $user)
{
if($i > 5) break;
switch($user->gender[‘value’])
{
case 1: $gender = ‘Mulher’;//change value for your language
break;
case 2: $gender = ‘Homem’;//change value for your language
break;
case 3: $gender = ‘Casal’;//change value for your language
break;
default: $gender = ‘Mulher’;
}
$location = $user->location;
$crit = $user->criteria;
$model .= ‘
‘
. ‘
Peso: ‘.($crit->weight==”” ? “Não responde” : $crit->weight) .’ ‘
. ‘Altura: ‘.($crit->height==”” ? “Não responde” : $crit->height)
. ‘
‘
. ‘ |
‘
. ‘
‘
. ‘
‘
. ‘PaÃs: ‘.$location->country.’ ‘
. ‘Estado: ‘.($location->division==”” ? “Não responde” : $location->division).’ ‘
. ‘Cidade: ‘.($location->city==”” ? “Não responde” : $location->city) .’ ‘
. ‘
‘
. ‘ |
‘
. ‘
‘
. ‘
‘
. ‘
‘
. ‘
‘
. ‘Descrição: ‘.$user->description.’ ‘
. ‘Cor do Cabelo: ‘.($crit->hair_color==”” ? “Não responde” : $crit->hair_color).’ ‘
. ‘Cor dos Olhos: ‘.($crit->eye_color==”” ? “Não responde” : $crit->eye_color) .’ ‘
. ‘Religião: ‘.($crit->religious_orientation==”” ? “Não responde” : $crit->religious_orientation) .’ ‘
. ‘Emprego: ‘.($crit->occupation==”” ? “Não responde” : $crit->occupation) .’ ‘
. ‘Contatar este membro‘ .’ ‘
. ‘
‘
. ‘ |
‘
. ‘
‘;
$model .= “
“;
$i++;
}
$model .=’
‘;
echo $model .’‘;
echo “Cadastre-se gratuitamente e veja todos os perfis de Mulheres Coroas no Estado de Acre”;
}
else { echo “Pedimos desculpa, mas de momento não nos é possÃvel mostrar utilizadores online no Estado de Acre”; }
}
[/insert_php]