<?php
$rs1=mysql_query("select * from users where active=1 and Username='$ref'");
if(mysql_num_rows($rs1)>0) {
$arr1=mysql_fetch_array($rs1);
echo "<a href=mailto:$arr1[7]>$arr1[1] (Username: $arr1[8])</a>";
}
else echo "No tiene padre";
?>
<?
$result = mysql_query("SELECT * FROM users where active = 1 and Username='$ref'");
if(mysql_num_rows($result)>0)
{
while($fila = mysql_fetch_array($result))
{
echo "<a href='mailto:".$fila['Email']."'>Usuario: ".$fila['Username']."</a>";
$result2 = mysql_query("SELECT * FROM users where active = 1 and User_id= '".$fila['Padre_id']."'");
if(mysql_num_rows($result2)>0)
{
while($fila2 = mysql_fetch_array($result2))
{
echo "Padre : <a href='mailto:".$fila2['Email']."'>Usuario: ".$fila2['Username']."</a>";
}
// aqui tercera itineracion para abuelo y dentro la cuarta para bisabuelo...
}
else
{
echo "No tiene padre";
}
}
}
else
{
echo "Usuario no existe o no activo";
}
?>
De nada! un placer poder ayudar.
$ref = "UsernameHijo";
$result = mysql_query("SELECT * FROM users where active = 1 and Username='".$ref."'");
if(mysql_num_rows($result)>0)
{
while($fila = mysql_fetch_array($result))
{
echo "<p>Usuario: <a href='mailto:".$fila['Email']."'>".$fila['Username']."</a></p>";
$result2 = mysql_query("SELECT * FROM users where active = 1 and ref_by = '".$fila['ID']."'");
if(mysql_num_rows($result2)>0)
{
while($fila2 = mysql_fetch_array($result2))
{
echo "<p>Padre : <a href='mailto:".$fila2['Email']."'>".$fila2['Username']."</a></p>";
$result3 = mysql_query("SELECT * FROM users where active = 1 and ref_by = '".$fila2['ID']."'");
if(mysql_num_rows($result3)>0)
{
while($fila3 = mysql_fetch_array($result3))
{
echo "<p>Abuelo : <a href='mailto:".$fila3['Email']."'>".$fila3['Username']."</a></p>";
$result4= mysql_query("SELECT * FROM users where active = 1 and ref_by = '".$fila3['ID']."'");
if(mysql_num_rows($result4)>0)
{
while($fila4 = mysql_fetch_array($result4))
{
echo "<p>Bisabuelo : <a href='mailto:".$fila4['Email']."'>".$fila4['Username']."</a></p>";
}
}
else
{
echo "<p>No tiene bisabuelo.</p>";
}
}
}
else
{
echo "<p>No tiene abuelo.</p>";
}
}
}
else
{
echo "<p>No tiene padre.</p>";
}
}
}
else
{
echo "<p>Usuario no existe o no activo.</p>";
}
?>
Utilizamos cookies y tecnologías similares para los siguientes fines:
¿Aceptas las cookies y estas tecnologías?
Utilizamos cookies y tecnologías similares para los siguientes fines:
¿Aceptas las cookies y estas tecnologías?