$texto="";
$sql="SELECT texto FROM textos WHERE idtexto=11 AND lang='".$idi."'";
$result= mysql_query($sql);
$total = mysql_num_rows($result);
if ($total==1) {
while ($fila=mysql_fetch_assoc($result)){
$texto=$fila["texto"];
}
} else {
$sql="SELECT texto FROM textos WHERE idtexto=11 AND lang='es'";
$result= mysql_query($sql);
while ($fila=mysql_fetch_assoc($result)){
$texto=$fila["texto"];
}
}
echo utf8_encode($texto);
?>