Ir para conteúdo
Fórum Script Brasil
  • 0

Colunas em PHP


Dj Debas

Pergunta

Tenho um site de midis e queria que as musicas contidas nele fossem dispostas em 2 colunas.

Mas ai ta o problema, não consigo fazer e quem eu conheço que mexe com php também não conseguiu.

o código lé os arquivos no diretorio do site e monta o Href pra colocar na página.

O problema é como fazer isso em 2 colunas ?

Como numerar as músicas automaticamente ?

Abaixo vai o código completo da página:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>::::::Teste:::::::</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="robots" content="index,follow" />
<meta name="rating" content="general" />
<meta name="generator" content="Macromedia Dreamweaver CS3" />
<style>
body {
margin:0;
padding:0;
color:#FFFF00;
background:#000000;
font:12px Verdana,Arial,Helvetica,sans-serif
}
a {
text-decoration:none;
color:#FFFFF0;
background:transparent;
font-weight:bold
}
a:hover {
text-decoration:underline;
color:#FFFFF0:transparent
}

a:visited {
    color: #FFD700;
}

.cantor {
text-transform:capitalize;
font-size:130%;
color:#FF0000;
font-weight:bold;
margin:10px 200px 10px 10px;
padding:2px 0;
text-align:left
}

.musica {
text-transform:capitalize;
font-size:110%;
color: #FFFFF0;
margin:10px 20px;
padding:2px 0;
background:transparent;
text-align:left
}

.anchor {
text-transform:capitalize;
font-size:130%;
color:#FF0000;
font-weight:bold;
margin:10px 200px 10px 10px;
padding:2px 0;
text-align:left;
color: #FF0000
}

</style>
</head>
<body>

<?php
$termo = ".mid";
$local = "Midis/Eletronicas";

$termo2 = converte_cedilha_e_acento($termo); 

function converte_parenteses_e_ponto($string){
 $string = str_replace ("(", "", $string);
 $string = str_replace (")", "", $string);
// $string = str_replace (".", "", $string);
 $string = str_replace ("-", "", $string);
 $string = str_replace ("_", " ", $string); 
 return $string;
}

function converte_estilo($string){
 $string = str_replace ("axesambaepagode", "ax?, samba e pagode", $string);
 $string = str_replace ("bluesjazzerock", "blues, jazz e rock", $string);
 $string = str_replace ("comemorativasehinosdefutebol", "comemorativas e hinos de futebol", $string);
 $string = str_replace ("forroebrega", "f?rro e bregas", $string);
 $string = str_replace ("internacional", "internacionais", $string); 
 $string = str_replace ("italianasefrancesas", "italianas e francesas", $string);
 $string = str_replace ("nacional", "nacionais", $string);
 $string = str_replace ("romanticas", "rom?nticas", $string);
 $string = str_replace ("tangoebolero", "tango, bolero e valsa", $string);
 return $string;
}

function converte_traco_em_espaco($string)
{
    $string = str_replace("_", " ", $string);
    $string = str_replace("(.a)", "?", $string);
    $string = str_replace("(a.)", "?", $string);
    $string = str_replace("(a)", "?", $string);
    $string = str_replace("(.a.)", "?", $string);
    $string = str_replace("(-a)", "?", $string);
    $string = str_replace("(-a.)", "?", $string);
    $string = str_replace("(ae)", "?", $string);
    $string = str_replace("(.e)", "?", $string);
    $string = str_replace("(e.)", "?", $string);
    $string = str_replace("(e)", "?", $string);
    $string = str_replace("(.e.)", "?", $string);
    $string = str_replace("(.i)", "?", $string);
    $string = str_replace("(i.)", "?", $string);
    $string = str_replace("(i)", "?", $string);
    $string = str_replace("(.i.)", "?", $string);
    $string = str_replace("(.o)", "?", $string);
    $string = str_replace("(o.)", "?", $string);
    $string = str_replace("(o)", "?", $string);
    $string = str_replace("(.o.)", "?", $string);
    $string = str_replace("(-o)", "?", $string);
    $string = str_replace("(-o.)", "?", $string);
    $string = str_replace("(-o-)", "?", $string);
    $string = str_replace("(o-)", "?", $string);
    $string = str_replace("(.u)", "?", $string);
    $string = str_replace("(u.)", "?", $string);
    $string = str_replace("(u)", "?", $string);
    $string = str_replace("(.u.)", "?", $string);
    $string = str_replace("()", "?", $string);
    $string = str_replace("(.-)", "`", $string);
    $string = str_replace("(.c)", "?", $string);
    $string = str_replace("©", "?", $string);
    $string = str_replace("®", "?", $string);    
    $string = str_replace("(tm)", "?", $string);
    $string = str_replace("(-)", "?", $string);
    $string = str_replace("(s)", "?", $string);    
    $string = str_replace("(l)", "?", $string);
    $string = str_replace("(-.)", "?", $string);
    $string = str_replace("(d)", "?", $string);    
    $string = str_replace("(B)", "?", $string);
    $string = str_replace("(.)", "?", $string);
    $string = str_replace("(t)", "?", $string);    
    $string = str_replace("(-t-)", "?", $string);
    $string = str_replace("(y)", "?", $string);
    return $string;
}
function converte_cedilha_e_acento($string) {     
$string = str_replace ("?", "c", $string);
$string = str_replace ("?", "C", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "e", $string);
$string = str_replace ("?", "E", $string);     
$string = str_replace ("?", "e", $string);
$string = str_replace ("?", "E", $string);     
$string = str_replace ("?", "e", $string);
$string = str_replace ("?", "E", $string);
$string = str_replace ("?", "i", $string);
$string = str_replace ("?", "I", $string);
$string = str_replace ("?", "i", $string);
$string = str_replace ("?", "I", $string);
$string = str_replace ("?", "i", $string);
$string = str_replace ("?", "I", $string);
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "u", $string);
$string = str_replace ("?", "U", $string);        
$string = str_replace ("?", "u", $string);
$string = str_replace ("?", "U", $string);        
$string = str_replace ("?", "u", $string);
$string = str_replace ("?", "U", $string);
//$string = str_replace (" ", "_", $string);         
return $string;
}

if(isset($termo2)){

$diretorio[0] = $local;

$x = count($diretorio)-1; // varre todos os diretorio e subdiret?rios 
for ($y = "0"; isset($diretorio[$y]); $y++) { 
    if ($dh = @opendir($diretorio[$y])) { 
        while (($file = readdir($dh)) !== false) { 
          if (is_dir("$diretorio[$y]/$file") && ($file != ".") && ($file != "..")) { 
 $x++; 
                $diretorio[$x] = $diretorio[$y]."/" .$file; 


          } 
        } 
        closedir($dh); 
    } 
} 

clearstatcache();

$procurou = "0"; 

for ($i = 0; isset($diretorio[$i]); $i++) {  // varre cada diret?rio encontrado 

if ($dh = @opendir($diretorio[$i])) { 
    while (($arquivo = readdir($dh)) !== false) { 
        $arq_quebra = explode(".", $arquivo); 
        $ext = strtolower(end($arq_quebra)); 

           if (($arquivo != '.') && ($arquivo != '..') && ($ext != $arq_quebra[0]) && ($ext != false)) { //tira . e .. e retira .mid tb

            if ($ext == "mid")  { 
                $procurou++;  //  determina o n?mero de arquivos pesquisados 

                $abre[$procurou] = $diretorio[$i]."/".$arquivo;
                            }
           }   
      }
    } 
 }
if($termo2!=""){
$numero = count ($abre);
$e="0";
         
         for( $z=0; $z < count($abre); $z++ ) {
             
             $arquivoB = "$abre[$z]"; 
             $barra = explode ("/", $arquivoB);
             $estilo[$z] = $barra[2];
                $sem_barra[$z] = $barra[4];
             $mid ="$sem_barra[$z]";
             $traco = explode ("_-_",$mid);
             $sem_traco = $traco[1];
             $sem_mid = explode (".mid", $sem_traco);
             $verifica_cantor[$z] = $barra[2];
             $verifica_musica[$z] = $sem_mid[0];
             $achei[$e] ="$abre[$z]";
    $e++;                
               $sentinela = "1"; 
              
  
            
       }
    if(!$sentinela) {
            echo "<br><br><h5 align=\"center\">Desculpe!</h5><br>";
            echo "<h5 align=\"center\"> Infelizmente o termo <em><b>" .$termo. " </b></em>ainda n?o consta em nosso site.</h5>";
         }
if($achei!="")    {
sort($achei);
         
for($e=0; $e < count($achei); $e++)
    { 


       $a = ($e-1);
         $arquivo = "$achei[$e]";
       $explode_barra= explode ("/", $arquivo);
       $artista[$e] = $explode_barra[2];
       $artista_anterior = "$artista[$a]";
       $artista_atual = "$artista[$e]";
       $com_mid[$e] = $explode_barra[3];
       $com_midi = "$com_mid[$e]";
       $explode_traco = explode("_-_", $com_midi);
       $sem_mid = $explode_traco[1];
       $musica_sem_traco = explode(".mid", $sem_mid);
       $local_estilo[$e] = converte_estilo($explode_barra[1]);
       $cantor[$e] = converte_traco_em_espaco($explode_barra[2]);
       $musica[$e] = converte_traco_em_espaco($musica_sem_traco[0]);

       if(strlen($artista_atual)==1)
            {
            echo "<br /><div class=\"anchor\">$artista_atual<a name=\"$artista_atual\"></a></div>\n";
            echo "<hr width='50%' color='#FF0000' align='left' />";
            }
       else
       {
       if ($artista_anterior == $artista_atual)
              {
                echo "<div class=\"musica\"><a href='".$achei[$e]. "'>" .$musica[$e]."</a></div>\n";
                           }
       else 
            {
            echo "<div class=\"cantor\">" .$cantor[$e]."</div>\n";
              echo "<div class=\"musica\"><a href='".$achei[$e]. "'>" .$musica[$e]."</a></div>\n";
              
                 }
       }
    }
 } 
} 
}
?>  
<br><br>
</body>
</html>

Outra coisa que não consegui fazer funcionar, é o seguinte, coloquei o codigo num diretorio e quiz fazer ele ler a partir de onde ele esta e não consegui fazer ele ler o diretorio onde estão as musicas.

Se alguém puder me ajudar serei muito grato. Obrigado

Link para o comentário
Compartilhar em outros sites

7 respostass a esta questão

Posts Recomendados

  • 0

Parceiro, segue abaixo respostas, faça os testes.

O problema é como fazer isso em 2 colunas ?

<div style="width:500px;display:table;">
    <div style="float:left;width:250px;border:1px solid gray">1</div>
    <div style="float:left;width:250px;border:1px solid gray">2</div>
    <div style="float:left;width:250px;border:1px solid gray">3</div>
    <div style="float:left;width:250px;border:1px solid gray">4</div>
    <div style="float:left;width:250px;border:1px solid gray">5</div>
    <div style="float:left;width:250px;border:1px solid gray">6</div>
    <div style="float:left;width:250px;border:1px solid gray">7</div>
</div>
------------------------------------------------------------------------------------------- Como numerar as músicas automaticamente ? USE a variavel $i do laço FOR
for ($i = 0; isset($diretorio[$i]); $i++) 
{
    echo $i . '<br>';
}

-------------------------------------------------------------------------------------------

Outra coisa que não consegui fazer funcionar, é o seguinte, coloquei o codigo num diretorio e quiz fazer ele ler a partir de onde ele esta e não consegui fazer ele ler o diretorio onde estão as musicas.

Não entendi direito essa dúvida, mas, o ideal seria você utilizar somente um script e passar o caminho/PATH de onde estão armazenadas AS os arquivos de áudio.

Editado por Romero Dias
Link para o comentário
Compartilhar em outros sites

  • 0

Caro Romero segui suas sugestões mais não consegui enquadrar elas no meu código.

O modelo de duas colunas eu consigo fazer certinho em HTML mais em PHP não consigo e não consigo ninguém que consiga também, tá dificil.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>::::::Teste:::::::</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta http-equiv="pragma" content="no-cache" />
<meta name="robots" content="index,follow" />
<meta name="rating" content="general" />
<meta name="generator" content="Macromedia Dreamweaver CS3" />
<style>

body {
margin:0;
padding:0;
color:#FFFF00;
background:#000000;
font:12px Verdana,Arial,Helvetica,sans-serif
}
a {
text-decoration:none;
color:#FFFFF0;
background:transparent;
font-weight:bold
}
a:hover {
text-decoration:underline;
color:#FFFFF0:transparent
}

a:visited {
    color: #FFD700;
}

.cantor {
text-transform:capitalize;
font-size:130%;
color:#FF0000;
font-weight:bold;
margin:10px 200px 10px 10px;
padding:2px 0;
text-align:left
}

.musica {
text-transform:capitalize;
font-size:110%;
color: #FFFFF0;
margin:10px 20px;
padding:2px 0;
background:transparent;
text-align:left
}

.anchor {
text-transform:capitalize;
font-size:130%;
color:#FF0000;
font-weight:bold;
margin:10px 200px 10px 10px;
padding:2px 0;
text-align:left;
color: #FF0000
}

</style>
</head>

<?php
$termo = ".mid";
$local = "Midis/Eletronicas";

$termo2 = converte_cedilha_e_acento($termo); 

function converte_parenteses_e_ponto($string){
 $string = str_replace ("(", "", $string);
 $string = str_replace (")", "", $string);
// $string = str_replace (".", "", $string);
 $string = str_replace ("-", "", $string);
 $string = str_replace ("_", " ", $string); 
 return $string;
}

function converte_estilo($string){
 $string = str_replace ("axesambaepagode", "ax?, samba e pagode", $string);
 $string = str_replace ("bluesjazzerock", "blues, jazz e rock", $string);
 $string = str_replace ("comemorativasehinosdefutebol", "comemorativas e hinos de futebol", $string);
 $string = str_replace ("forroebrega", "f?rro e bregas", $string);
 $string = str_replace ("internacional", "internacionais", $string); 
 $string = str_replace ("italianasefrancesas", "italianas e francesas", $string);
 $string = str_replace ("nacional", "nacionais", $string);
 $string = str_replace ("romanticas", "rom?nticas", $string);
 $string = str_replace ("tangoebolero", "tango, bolero e valsa", $string);
 return $string;
}

function converte_traco_em_espaco($string)
{
    $string = str_replace("_", " ", $string);
    $string = str_replace("(.a)", "?", $string);
    $string = str_replace("(a.)", "?", $string);
    $string = str_replace("(a)", "?", $string);
    $string = str_replace("(.a.)", "?", $string);
    $string = str_replace("(-a)", "?", $string);
    $string = str_replace("(-a.)", "?", $string);
    $string = str_replace("(ae)", "?", $string);
    $string = str_replace("(.e)", "?", $string);
    $string = str_replace("(e.)", "?", $string);
    $string = str_replace("(e)", "?", $string);
    $string = str_replace("(.e.)", "?", $string);
    $string = str_replace("(.i)", "?", $string);
    $string = str_replace("(i.)", "?", $string);
    $string = str_replace("(i)", "?", $string);
    $string = str_replace("(.i.)", "?", $string);
    $string = str_replace("(.o)", "?", $string);
    $string = str_replace("(o.)", "?", $string);
    $string = str_replace("(o)", "?", $string);
    $string = str_replace("(.o.)", "?", $string);
    $string = str_replace("(-o)", "?", $string);
    $string = str_replace("(-o.)", "?", $string);
    $string = str_replace("(-o-)", "?", $string);
    $string = str_replace("(o-)", "?", $string);
    $string = str_replace("(.u)", "?", $string);
    $string = str_replace("(u.)", "?", $string);
    $string = str_replace("(u)", "?", $string);
    $string = str_replace("(.u.)", "?", $string);
    $string = str_replace("()", "?", $string);
    $string = str_replace("(.-)", "`", $string);
    $string = str_replace("(.c)", "?", $string);
    $string = str_replace("(c)", "?", $string);
    $string = str_replace("(r)", "?", $string);    
    $string = str_replace("(tm)", "?", $string);
    $string = str_replace("(-)", "?", $string);
    $string = str_replace("(s)", "?", $string);    
    $string = str_replace("(l)", "?", $string);
    $string = str_replace("(-.)", "?", $string);
    $string = str_replace("(d)", "?", $string);    
    $string = str_replace("(b)", "?", $string);
    $string = str_replace("(.)", "?", $string);
    $string = str_replace("(t)", "?", $string);    
    $string = str_replace("(-t-)", "?", $string);
    $string = str_replace("(y)", "?", $string);
    return $string;
}
function converte_cedilha_e_acento($string) {     
$string = str_replace ("?", "c", $string);
$string = str_replace ("?", "C", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "a", $string);
$string = str_replace ("?", "A", $string);
$string = str_replace ("?", "e", $string);
$string = str_replace ("?", "E", $string);     
$string = str_replace ("?", "e", $string);
$string = str_replace ("?", "E", $string);     
$string = str_replace ("?", "e", $string);
$string = str_replace ("?", "E", $string);
$string = str_replace ("?", "i", $string);
$string = str_replace ("?", "I", $string);
$string = str_replace ("?", "i", $string);
$string = str_replace ("?", "I", $string);
$string = str_replace ("?", "i", $string);
$string = str_replace ("?", "I", $string);
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "o", $string);
$string = str_replace ("?", "O", $string);        
$string = str_replace ("?", "u", $string);
$string = str_replace ("?", "U", $string);        
$string = str_replace ("?", "u", $string);
$string = str_replace ("?", "U", $string);        
$string = str_replace ("?", "u", $string);
$string = str_replace ("?", "U", $string);
//$string = str_replace (" ", "_", $string);         
return $string;
}

if(isset($termo2)){

$diretorio[0] = $local;

$x = count($diretorio)-1; // varre todos os diretorio e subdiret?rios 
for ($y = "0"; isset($diretorio[$y]); $y++) { 
    if ($dh = @opendir($diretorio[$y])) { 
        while (($file = readdir($dh)) !== false) { 
          if (is_dir("$diretorio[$y]/$file") && ($file != ".") && ($file != "..")) { 
 $x++; 
                $diretorio[$x] = $diretorio[$y]."/" .$file; 


          } 
        } 
        closedir($dh); 
    } 
} 

clearstatcache();

$procurou = "0"; 

for ($i = 0; isset($diretorio[$i]); $i++) {  // varre cada diret?rio encontrado 

if ($dh = @opendir($diretorio[$i])) { 
    while (($arquivo = readdir($dh)) !== false) { 
        $arq_quebra = explode(".", $arquivo); 
        $ext = strtolower(end($arq_quebra)); 

           if (($arquivo != '.') && ($arquivo != '..') && ($ext != $arq_quebra[0]) && ($ext != false)) { //tira . e .. e retira .mid tb

            if ($ext == "mid")  { 
                $procurou++;  //  determina o n?mero de arquivos pesquisados 

                $abre[$procurou] = $diretorio[$i]."/".$arquivo;
                            }
           }   
      }
    } 
 }
if($termo2!=""){
$numero = count ($abre);
$e="0";
         
         for( $z=0; $z < count($abre); $z++ ) {
             
             $arquivoB = "$abre[$z]"; 
             $barra = explode ("/", $arquivoB);
             $estilo[$z] = $barra[2];
                $sem_barra[$z] = $barra[4];
             $mid ="$sem_barra[$z]";
             $traco = explode ("_-_",$mid);
             $sem_traco = $traco[1];
             $sem_mid = explode (".mid", $sem_traco);
             $verifica_cantor[$z] = $barra[2];
             $verifica_musica[$z] = $sem_mid[0];
             $achei[$e] ="$abre[$z]";
    $e++;                
               $sentinela = "1"; 
              
  
            
       }
    if(!$sentinela) {
            echo "<br><br><h5 align=\"center\">Desculpe!</h5><br>";
            echo "<h5 align=\"center\"> Infelizmente o termo <em><b>" .$termo. " </b></em>ainda n?o consta em nosso site.</h5>";
         }
if($achei!="")    {
sort($achei);
         
for($e=0; $e < count($achei); $e++)
    { 


       $a = ($e-1);
         $arquivo = "$achei[$e]";
       $explode_barra= explode ("/", $arquivo);
       $artista[$e] = $explode_barra[2];
       $artista_anterior = "$artista[$a]";
       $artista_atual = "$artista[$e]";
       $com_mid[$e] = $explode_barra[3];
       $com_midi = "$com_mid[$e]";
       $explode_traco = explode("_-_", $com_midi);
       $sem_mid = $explode_traco[1];
       $musica_sem_traco = explode(".mid", $sem_mid);
       $local_estilo[$e] = converte_estilo($explode_barra[1]);
       $cantor[$e] = converte_traco_em_espaco($explode_barra[2]);
       $musica[$e] = converte_traco_em_espaco($musica_sem_traco[0]);

       if(strlen($artista_atual)==1)

                                    {
            echo "<br /><div class=\"anchor\">$artista_atual<a name=\"$artista_atual\"></a></div>\n";
            echo "<hr width='50%' color='#FF0000' align='left' />";
            }
       else
       {
       if ($artista_anterior == $artista_atual)


                                       {
                echo "<div class=\"musica\"><a href='".$achei[$e]. "'>" .$musica[$e]."</a></div>\n";
                           }
       else 
                                    {
            echo "<div class=\"cantor\">" .$cantor[$e]."</div>\n";
              echo "<div class=\"musica\"><a href='".$achei[$e]. "'>" .$musica[$e]."</a></div>\n";
              
                 }
       }
    }
 } 
} 
}
?>  
<br><br>
</body>
</html>

O modelo que eu quero que fique as colunas é nesse formato :

0001 - xxxxxx-xxxxxxxxxxxxxxxxx 0002 - xxxxxxxxxxx-xxxxxxxxxxxxxxxxx

Todas numeradas, e alinhadas ao centro, estou tentando fazer isso há tempos e não consigo em php

Com relação ao código não ler os arquivos a partir do diretório, vou explicar,

Se eu coloco esse código Teste.php na raiz do meu diretório ele funciona perfeitamente, mas se eu colocar o Teste.php dentro de um diretório ele já não funciona mais, tipo, ele não varre os diretórios onde se encontram as musicas.

/home/djdebas/Teste.php = Ok!

/home/djdebas/Prog/Teste.php = Not !

o Diretorio esta descrita na variavel &local

Espero que possa arranjar uma solução que funcione nesse código pra fazer as 2 colunas e a numeração e também poder colocar o código num diretório e ele funcione.

Agradeço a colaboração do pessoal e ao amigo Romero por prestar seu tempo pra meu auxiliar

Link para o comentário
Compartilhar em outros sites

  • 0

Pareceiro,

Fiz um exemplo em PHP, funcionou perfeitamete.

<?php 

    $arrNum = array(1,2,3,4,5,6,7,8,9,10);
    
    echo "<div style='width:500px;display:table;'>";
    
    for ( $i=0; $i<count($arrNum); $i++)
    {
        echo "<div style='float:left;width:250px;border:1px solid gray'>$arrNum[$i]xxxxxx-xxxxxxx</div>";
    }
    
    echo "</div>";
?>

Abraço!

Link para o comentário
Compartilhar em outros sites

  • 0

Amigo Romero !!!

Testei essa sua última rotina, mas não é isso que eu quero, ela também aparece, 1 coluna ao lado esquerdo da tela, 1 em baixo da outra.

O que eu quero é 2 colunas tipo assim:

0001 - Beyoncé - Halo 0002 - Beyocé - Halo (Remix)

0003 - Ian Van Dahl - Got Heaven 0004 - Dj Jean - Let me Out

Nesse formato e sem grades:

O código vai pegar a parte abaixo e colocar em 2 colunas e isso que ninguém esta conseguindo fazer

if(strlen($artista_atual)==1)

                                    {
            echo "<br /><div class=\"anchor\">$artista_atual<a name=Letra \"$artista_atual\"></a></div>\n";
            echo "<hr width='50%' color='#FF0000' align='left' />";
            }
       else
       {
       if ($artista_anterior == $artista_atual)


                                       {
                echo "<div class=\"musica\"><a href='".$achei[$e]. "'>" .$musica[$e]."</a></div>\n";
                           }
       else 
                                    {
            echo "<div class=\"cantor\">" .$cantor[$e]."</div>\n";
              echo "<div class=\"musica\"><a href='".$achei[$e]. "'>" .$musica[$e]."</a></div>\n";

Agradeço mais uma vez ao amigo Romero por outra sugestão !!

tentei fazer o exemplo das colunas mas saiu destabelado

0001 - Beyoncé - Halo
0002 - Beyoncé - Halo (Remix)

0003 - Ian Van Dahl - Got Heaven
0004 - Dj Jean - Let me Out

Tudo sem grades

Link para o comentário
Compartilhar em outros sites

  • 0

Parceiro,

Acho que então entendi seu problema,

a saida seria assim? sem coluas, "meio bagunçado"?

0001 - Beyoncé - Halo 0002 - Beyocé - Halo (Remix)

0003 - Ian Van Dahl - Got Heaven 0004 - Dj Jean - Let me Out

faça um teste no código abaixo,

<?php
    $arrNum = array('Beyoncé - Halo',
                    'Beyocé - Halo (Remix)',
                    'Ian Van Dahl - Got Heave',
                    'Dj Jean - Let me Out',
                    'Beyoncé - Halo',
                    'Beyoncé - Halo',
                    'Beyoncé - Halo',
                    'Beyoncé - Halo',
                    'Beyoncé - Halo',
                    'Beyoncé - Halo');
    
    
    for ( $i=0; $i<count($arrNum); $i++)
    {
        echo sprintf('%04d',$i) . '-' . $arrNum[$i] . ' ';
        $i++;
        echo sprintf('%04d',$i) . '-' . $arrNum[$i];
        echo '<br>';
    }
    
?>

A saida foi:

0000-Beyoncé - Halo 0001-Beyocé - Halo (Remix)

0002-Ian Van Dahl - Got Heave 0003-Dj Jean - Let me Out

0004-Beyoncé - Halo 0005-Beyoncé - Halo

0006-Beyoncé - Halo 0007-Beyoncé - Halo

0008-Beyoncé - Halo 0009-Beyoncé - Halo

Link para o comentário
Compartilhar em outros sites

  • 0

Amigo Romero, agradeço seu tempo e suas sugestões mais não é isso, o que eu quero e como no exemplo em html abaixo:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head><title>The Dj Deba´s Midi - O Melhor Site de Música Eletrônica da Net - Página Downtempo -</title>
<link href="http://the-debas.sites.uol.com.br/estilos.css" type="text/css" rel="stylesheet">
<link rel="shortcut icon" href="http://the-debas.sites.uol.com.br/favicon.ico" type="image/x-icon">
<meta content="MSHTML 6.00.2800.1226" name="GENERATOR">
<meta content="" name="Keywords">
<meta content="Dj Deba's Midi" name="Description">

</head>

<body text="#ffffff" bottommargin="4" vlink="#43CD80" alink="#43CD80" link="#CCFFCC" leftmargin="4" background="http://tools.hpg.ig.com.br/criar/templates/20/1/4/imagens/home_background.gif" topmargin="4" rightmargin="4" marginwidth="4" marginheight="4">

<font face="arial"><span class="ar12ntexto"><font size="2"><table cellspacing="2" cellpadding="2" width="90%" border="0"><tbody>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra A<A NAME="A"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Afterlift</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;01 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Afterlift_feat_Neve_-_Elijah.mid" style="text-decoration:none">Elijah - Afterlift feat Neve</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Angus</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;02 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Angus_and_Julia_Stone_-_Paper_Aeroplane.mid" style="text-decoration:none">Paper Aeroplane - Angus & Julia Stone</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra B<A NAME="B"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Brazilian Girls</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;03 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Brazilian_Girls_-_Homme_Naked_Girls.mid" style="text-decoration:none">Homme Naked Girls - Brazilian Girls</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra D<A NAME="D"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Dee Lite</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;04 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Build_the_Bridge.mid" style="text-decoration:none">Build the Bridge - Dee Lite</a>
</td>
<td width="413">
&nbsp;05 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Deee-Lite_Theme.mid" style="text-decoration:none">Dee Lite Theme - Dee Lite</a>
<tr>
<td width="413">
&nbsp;06 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Deep_Ending.mid" style="text-decoration:none">Deep Ending - Dee Lite</a>
</td>
<td width="413">
&nbsp;07 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_E.S.P..mid" style="text-decoration:none">E.S.P. - Dee Lite</a>
<tr>
<td width="413">
&nbsp;08 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Good_Beat.mid" style="text-decoration:none">Good Beat - Dee Lite</a>
</td>
<td width="413">
&nbsp;09 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Groove_is_in_the_Heart.mid" style="text-decoration:none">Groove is in the Heart - Dee Lite</a>
<tr>
<td width="413">
&nbsp;10 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Power_of_Love.mid" style="text-decoration:none">Power of Love - Dee Lite</a>
</td>
<td width="413">
&nbsp;11 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Smile_On.mid" style="text-decoration:none">Smile On - Dee Lite</a>
<tr>
<td width="413">
&nbsp;12 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Try_Me_On...Im_Very_You.mid" style="text-decoration:none">Try me On... I'm Very You - Dee Lite</a>
</td>
<td width="413">
&nbsp;13 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_What_is_Love-.mid" style="text-decoration:none">What is Love - Dee Lite</a>
<tr>
<td width="413">
&nbsp;14 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_Who_Was_That-.mid" style="text-decoration:none">Who Was That - Dee Lite</a>
</td>
<td width="413">
&nbsp;15 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deee-Lite_-_World_Clique.mid" style="text-decoration:none">World Clique - Dee Lite</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Deep Dive Corp</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;16 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Deep_Dive_Corp_-_Little_Ditty.mid" style="text-decoration:none">Little Ditty - Deep Dive Corp</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Demon Ritchie</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;17 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Demon_Ritchie_-_Only_In_New-York.mid" style="text-decoration:none">Only in New York - Demon Ritchie</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Dephazz</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;18 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Dephazz_-_My_Society.mid" style="text-decoration:none">My Society - Dephazz</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Dj Disse</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;19 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Dj_Disse_-_Taxi_to_War.mid" style="text-decoration:none">Taxi to War - Dj Disse</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Djako</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;20 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/DjaKo_-_Devil_Train.mid" style="text-decoration:none">Devil Train - Djako</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra E<A NAME="E"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Emancipator</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;21 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Anthem.mid" style="text-decoration:none">Anthem - Emancipator</a>
</td>
<td width="413">
&nbsp;22 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Eve.mid" style="text-decoration:none">Eve - Emancipator</a>
<tr>
<td width="413">
&nbsp;23 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Father_King.mid" style="text-decoration:none">Father King - Emancipator</a>
</td>
<td width="413">
&nbsp;24 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_First_Snow.mid" style="text-decoration:none">First Snow - Emancipator</a>
<tr>
<td width="413">
&nbsp;25 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Good_Knight.mid" style="text-decoration:none">Good Knight - Emancipator</a>
</td>
<td width="413">
&nbsp;26 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Lionheart.mid" style="text-decoration:none">Lionheart - Emancipator</a>
<tr>
<td width="413">
&nbsp;27 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Maps.mid" style="text-decoration:none">Maps - Emancipator</a>
</td>
<td width="413">
&nbsp;28 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Periscope_Up.mid" style="text-decoration:none">Periscope Up - Emancipator</a>
<tr>
<td width="413">
&nbsp;29 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Smoke_Signals.mid" style="text-decoration:none">Smoke Signals - Emancipator</a>
</td>
<td width="413">
&nbsp;30 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Soon_It_Will_be_Cold_Enough_to_Build_Fires.mid" style="text-decoration:none">Soon It Will be Cold Enough to Build Fires - Emancipator</a>
<tr>
<td width="413">
&nbsp;31 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_The_Darkest_Evening_of_the_Year.mid" style="text-decoration:none">The Darkest Evening of the Year - Emancipator</a>
</td>
<td width="413">
&nbsp;32 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_When_I_Go.mid" style="text-decoration:none">When I Go - Emancipator</a>
<tr>
<td width="413">
&nbsp;33 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_With_Rainy_Eyes.mid" style="text-decoration:none">With Rainy Eyes - Emancipator</a>
</td>
<td width="413">
&nbsp;34 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Emancipator_-_Wolf_Drawn.mid" style="text-decoration:none">Wolf Drawn - Emancipator</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra F<A NAME="F"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Flunk</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;35 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_All_Day_and_All_of_the_Night_Original_Mix.mid" style="text-decoration:none">All Day and All of the Night (Original Mix) - Flunk</a>
</td>
<td width="413">
&nbsp;36 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_All_Day_and_All_of_the_Night_Tronso_and_Nils_Noa_Remix.mid" style="text-decoration:none">All Day and All of the Night (Tronso & Nils Noa Remix) - Flunk</a>
<tr>
<td width="413">
&nbsp;37 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_All_Day_and_All_of_the_Night_Tronso_and_Nils_Noa_Remix_-_Radio_Edit.mid" style="text-decoration:none">All Day and All of the Night (Tronso & Nils Noa Remix Radio Edit) - Flunk</a>
</td>
<td width="413">
&nbsp;38 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Blue_Monday.mid" style="text-decoration:none">Blue Monday - Flunk</a>
<tr>
<td width="413">
&nbsp;39 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Distortion.mid" style="text-decoration:none">Distortion - Flunk</a>
</td>
<td width="413">
&nbsp;40 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Honeys_In_Love.mid" style="text-decoration:none">Honeys in Love - Flunk</a>
<tr>
<td width="413">
&nbsp;41 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_I_Love_Music.mid" style="text-decoration:none">I Love Music - Flunk</a>
</td>
<td width="413">
&nbsp;42 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Indian_Rope_Trick.mid" style="text-decoration:none">Indian Rope Trick - Flunk</a>
<tr>
<td width="413">
&nbsp;43 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Ive_Been_Waiting_All_my_Life_Elektrofant_DX-7_Remix.mid" style="text-decoration:none">I've Been Waiting All my Life (Elektrofant DX-7 Remix) - Flunk</a>
</td>
<td width="413">
&nbsp;44 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Kebab_Shop_3_AM.mid" style="text-decoration:none">Kebad Shop 3 AM - Flunk</a>
<tr>
<td width="413">
&nbsp;45 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Magic_Potion.mid" style="text-decoration:none">Magic Potion - Flunk</a>
</td>
<td width="413">
&nbsp;46 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Miss_World.mid" style="text-decoration:none">Miss World - Flunk</a>
<tr>
<td width="413">
&nbsp;47 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Morning_Star_Parliavox_Remix.mid" style="text-decoration:none">Morning Star (Parliavox Remix) - Flunk</a>
</td>
<td width="413">
&nbsp;48 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_On_my_Balcony_Video_Edit.mid" style="text-decoration:none">On my Balcony (Video Edit) - Flunk</a>
<tr>
<td width="413">
&nbsp;49 - <a href="http://www.freewebtown.com/thedebasdown0001/Downtempo/Flunk_-_Play_Athome_Project_Remix.mid" style="text-decoration:none">Play (At Home Project Remix) - Flunk</a>
</td>
<td width="413">
&nbsp;50 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flunk_-_Play_Slopho_Remix.mid" style="text-decoration:none">Play (Slopho Remix) - Flunk</a>
<tr>
<td width="413">
&nbsp;51 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flunk_-_See_Through_You.mid" style="text-decoration:none">See Through You - Flunk</a>
</td>
<td width="413">
&nbsp;52 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flunk_-_Six_Seven_Times_Video_Edit.mid" style="text-decoration:none">Six Seven Times (Video Edit) - Flunk</a>
<tr>
<td width="413">
&nbsp;53 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flunk_-_Sunday_People_Dont_Bang_The_Drum.mid" style="text-decoration:none">Sunday People Don't Bang the Drum - Flunk</a>
</td>
<td width="413">
&nbsp;54 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flunk_-_Syrupsniph.mid" style="text-decoration:none">Syrupsniph - Flunk</a>
<tr>
<td width="413">
&nbsp;55 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flunk_-_Your_Koolest_Smile.mid" style="text-decoration:none">Your Koolest Smile - Flunk</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Flying Pops</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;56 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Flying_Pops_-_A_La_Pche.mid" style="text-decoration:none">A La Pche - Flying Pops</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra G<A NAME="G"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Goldfrapp</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;57 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_AandE.mid" style="text-decoration:none">A and E - Goldfrapp</a>
</td>
<td width="413">
&nbsp;58 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Caravan_Girl.mid" style="text-decoration:none">Caravan Girl - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;59 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Clowns.mid" style="text-decoration:none">Clowns - Goldfrapp</a>
</td>
<td width="413">
&nbsp;60 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Cologne_Cerrone_Houdini.mid" style="text-decoration:none">Cologne Cerrone Houdini - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;61 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Deer_Stop.mid" style="text-decoration:none">Deer Stop - Goldfrapp</a>
</td>
<td width="413">
&nbsp;62 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Eat_Yourself.mid" style="text-decoration:none">Eat Yourself - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;63 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Felt_Mountain.mid" style="text-decoration:none">Felt Mountain - Goldfrapp</a>
</td>
<td width="413">
&nbsp;64 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Happiness.mid" style="text-decoration:none">Happiness - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;65 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Horse_Tears.mid" style="text-decoration:none">Horse Tears - Goldfrapp</a>
</td>
<td width="413">
&nbsp;66 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Human.mid" style="text-decoration:none">Human - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;67 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Little_Bird.mid" style="text-decoration:none">Little Bird - Goldfrapp</a>
</td>
<td width="413">
&nbsp;68 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Lovely_Head.mid" style="text-decoration:none">Lovely Head - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;69 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Monster_Love.mid" style="text-decoration:none">Monster Love - Goldfrapp</a>
</td>
<td width="413">
&nbsp;70 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Oompa_Radar.mid" style="text-decoration:none">Oompa Radar - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;71 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Paper_Bag.mid" style="text-decoration:none">Paper Bag - Goldfrapp</a>
</td>
<td width="413">
&nbsp;72 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Pilots.mid" style="text-decoration:none">Pilots - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;73 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Road_to_Somewhere.mid" style="text-decoration:none">Road to Somehere - Goldfrapp</a>
</td>
<td width="413">
&nbsp;74 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Some_People.mid" style="text-decoration:none">Some People - Goldfrapp</a>
<tr>
<td width="413">
&nbsp;75 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goldfrapp_-_Utopia.mid" style="text-decoration:none">Utopia - Goldfrapp</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Goloka</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;76 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Goloka_-_Save_me_Tonight.mid" style="text-decoration:none">Save me Tonight - Goloka</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Gusgus</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;77 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Barry.mid" style="text-decoration:none">Barry - Gusgus</a>
</td>
<td width="413">
&nbsp;78 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Believe.mid" style="text-decoration:none">Believe - Gusgus</a>
<tr>
<td width="413">
&nbsp;79 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Chocolate.mid" style="text-decoration:none">Chocolate - Gusgus</a>
</td>
<td width="413">
&nbsp;80 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Cold_Breath.mid" style="text-decoration:none">Cold Breath - Gusgus</a>
<tr>
<td width="413">
&nbsp;81 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Gun.mid" style="text-decoration:none">Gun - Gusgus</a>
</td>
<td width="413">
&nbsp;82 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Is_Jesus_Your_Pal.mid" style="text-decoration:none">Is Jesus Your Pal - Gusgus</a>
<tr>
<td width="413">
&nbsp;83 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Message_From_Disney.mid" style="text-decoration:none">Message From Disney - Gusgus</a>
</td>
<td width="413">
&nbsp;84 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Oh.mid" style="text-decoration:none">Oh - Gusgus</a>
<tr>
<td width="413">
&nbsp;85 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Polyesterday.mid" style="text-decoration:none">Polyesterday - Gusgus</a>
</td>
<td width="413">
&nbsp;86 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Purple.mid" style="text-decoration:none">Purple - Gusgus</a>
<tr>
<td width="413">
&nbsp;87 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Rememberance.mid" style="text-decoration:none">Rememberance - Gusgus</a>
</td>
<td width="413">
&nbsp;88 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Gusgus_-_Why.mid" style="text-decoration:none">Why - Gusgus</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra H<A NAME="H"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Helios</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;89 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Bless_This_Morning_Year.mid" style="text-decoration:none">Bless This Morning Year - Helios</a>
</td>
<td width="413">
&nbsp;90 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Coast_Off.mid" style="text-decoration:none">Coast Off - Helios</a>
<tr>
<td width="413">
&nbsp;91 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Dragonfly_Across_an_Ancient_Sky.mid" style="text-decoration:none">Dragonfly Across an Ancient Sky - Helios</a>
</td>
<td width="413">
&nbsp;92 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Emancipation.mid" style="text-decoration:none">Emancipation - Helios</a>
<tr>
<td width="413">
&nbsp;93 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_First_Dream_Called_Ocean.mid" style="text-decoration:none">First Dream Called Ocean - Helios</a>
</td>
<td width="413">
&nbsp;94 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_For_Years_and_Years.mid" style="text-decoration:none">For Years and Years - Helios</a>
<tr>
<td width="413">
&nbsp;95 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Halving_the_Compass.mid" style="text-decoration:none">Halving the Compass - Helios</a>
</td>
<td width="413">
&nbsp;97 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Paper_Tiger.mid" style="text-decoration:none">Paper Tiger - Helios</a>
<tr>
<td width="413">
&nbsp;98 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Sons_of_Light_and_Darkness.mid" style="text-decoration:none">Sons of Light and Darkness - Helios</a>
</td>
<td width="413">
&nbsp;99 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_The_Toy_Garden.mid" style="text-decoration:none">The Toy Garden - Helios</a>
<tr>
<td width="413">
&nbsp;100 - <a href="http://www.freewebtown.com/thedebasdown0002/Downtempo/Helios_-_Vargtimme.mid" style="text-decoration:none">Vargtimme - Helios</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Hird</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;101 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Hird_-_Getting_Closer.mid" style="text-decoration:none">Getting Closer - Hird</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra I<A NAME="I"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Ilya</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;102 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_All_for_Melody.mid" style="text-decoration:none">All for Melody - Ilya</a>
</td>
<td width="413">
&nbsp;103 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Bellissimo.mid" style="text-decoration:none">Belissimo - Ilya</a>
<tr>
<td width="413">
&nbsp;104 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Bliss.mid" style="text-decoration:none">Bliss - Ilya</a>
</td>
<td width="413">
&nbsp;105 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Happy_and_Weak.mid" style="text-decoration:none">Happy and Weak - Ilya</a>
<tr>
<td width="413">
&nbsp;106 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Heavenly.mid" style="text-decoration:none">Heavenly - Ilya</a>
</td>
<td width="413">
&nbsp;107 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Pretty_Baby.mid" style="text-decoration:none">Pretty Baby - Ilya</a>
<tr>
<td width="413">
&nbsp;108 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Quattra_Neon.mid" style="text-decoration:none">Quattra Neon - Ilya</a>
</td>
<td width="413">
&nbsp;109 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_Soleil_Soleil.mid" style="text-decoration:none">Soleil Soleil - Ilya</a>
<tr>
<td width="413">
&nbsp;110 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ilya_-_They_Died_for_Beauty.mid" style="text-decoration:none">They Died for Beauty - Ilya</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra K<A NAME="I"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Karmacoda</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;111 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Delay_the_Sun_Den_Jones_is_Searchin_for_the_Sun_Remix.mid" style="text-decoration:none">Delay the Sun (Den Jones is Searchin for the Sun Remix) - Karmacoda</a>
</td>
<td width="413">
&nbsp;112 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Delay_the_Sun_Mason_Rothert_Below_Zero_Remix.mid" style="text-decoration:none">Delay the Sun (Mason Rothert Below Zero Remix) - Karmacoda</a>
<tr>
<td width="413">
&nbsp;113 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Endings_Dj_Polywog_and_Dj_Steve_Pagan_Remix.mid" style="text-decoration:none">Endings (Dj Polywog & Dj Steve Pagan Remix) - Karmacoda</a>
</td>
<td width="413">
&nbsp;114 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Endings_Froggers_Space_Dub_Remix.mid" style="text-decoration:none">Endings (Froggers Space Dub Remix) - Karmacoda</a>
<tr>
<td width="413">
&nbsp;115 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Hope_Over_Hope_B.S_Red_Swan_Remix.mid" style="text-decoration:none">Hope Over Hope (B.S. Red Swan Remix) - Karmacoda</a>
</td>
<td width="413">
&nbsp;116 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Make_Like_Mine_Latin_Air_Remix.mid" style="text-decoration:none">Make Like Mine (Latin Air Remix) - Karmacoda</a>
<tr>
<td width="413">
&nbsp;117 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Make_Like_Mine_SF_vs_Detroit_Remix.mid" style="text-decoration:none">Make Like Mine (SF vs Detroit Remix) - Karmacoda</a>
</td>
<td width="413">
&nbsp;118 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Skylines_Bata_Bones_Subversive_Remix.mid" style="text-decoration:none">Skylines (Bata Bones Subversive Remix) - Karmacoda</a>
<tr>
<td width="413">
&nbsp;119 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Something_Uwe_Hollands_10_Feet_Are_2_More_Remix.mid" style="text-decoration:none">Something (Uwe Hollands 10 Feet Are 2 More Remix) - Karmacoda</a>
</td>
<td width="413">
&nbsp;120 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Spectre_Sinukus_Below_Zero_Friendly_Remix.mid" style="text-decoration:none">Spectre Sinukus (Below Zero Friendly Remix) - Karmacoda</a>
<tr>
<td width="413">
&nbsp;121 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Turn_-_Rafaels_Turn_Back_the_Retro_Mix.mid" style="text-decoration:none">Turn (Rafaels Turn Back the Retro Mix) - Karmacoda</a>
</td>
<td width="413">
&nbsp;122 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Turn_Takashi_Fujimori_Radio_Edit_Remix.mid" style="text-decoration:none">Turn (Takashi Fujimori Radio Edit Remix) - Karmacoda</a>
<tr>
<td width="413">
&nbsp;123 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Karmacoda_-_Wonder_Dj_Ambers_Wonderplay_Remix.mid" style="text-decoration:none">Wonder (Dj Ambers Wonderplay Remix) - Karmacoda</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra L<A NAME="L"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Locust</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;124 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Ancient_Hometown.mid" style="text-decoration:none">Ancient Hometown - Locust</a>
</td>
<td width="413">
&nbsp;125 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Clouds_At_my_Feet.mid" style="text-decoration:none">Clouds At my Feet - Locust</a>
<tr>
<td width="413">
&nbsp;126 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Folie.mid" style="text-decoration:none">Folie - Locust</a>
</td>
<td width="413">
&nbsp;127 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_I_Am_the_Murderer.mid" style="text-decoration:none">I Am the Murderer - Locust</a>
<tr>
<td width="413">
&nbsp;128 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Jukebox_Heart.mid" style="text-decoration:none">Jukebox Heart - Locust</a>
</td>
<td width="413">
&nbsp;129 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Just_Like_You.mid" style="text-decoration:none">Just Like You - Locust</a>
<tr>
<td width="413">
&nbsp;130 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Let_me_Take_You_Back.mid" style="text-decoration:none">Let me Take You Back - Locust</a>
</td>
<td width="413">
&nbsp;131 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Morning_Light.mid" style="text-decoration:none">Morning Light - Locust</a>
<tr>
<td width="413">
&nbsp;132 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_No-One_In_the_World.mid" style="text-decoration:none">No-One in the World - Locust</a>
</td>
<td width="413">
&nbsp;133 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_On_the_Horizon_With_Ghost_Track.mid" style="text-decoration:none">On the Horizon With Ghost Track - Locust</a>
<tr>
<td width="413">
&nbsp;134 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_One_Way_or_Another.mid" style="text-decoration:none">One Way or Another - Locust</a>
</td>
<td width="413">
&nbsp;135 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Shadow_Play.mid" style="text-decoration:none">Shadow Play - Locust</a>
<tr>
<td width="413">
&nbsp;136 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Some_Love_Will_Remain_Unsaid.mid" style="text-decoration:none">Some Love Will Remain Unsaid - Locust</a>
</td>
<td width="413">
&nbsp;137 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Summer_Rain.mid" style="text-decoration:none">Summer Rain - Locust</a>
<tr>
<td width="413">
&nbsp;138 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_The_Girl_With_the_Fairytale_Dream.mid" style="text-decoration:none">The Girl With the Fairytale Dream - Locust</a>
</td>
<td width="413">
&nbsp;139 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Locust_-_Your_Selfish_Ways.mid" style="text-decoration:none">Your Selfish Ways - Locust</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Louie Austen</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;140 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Louie_Austen_-_Glamour_Girl.mid" style="text-decoration:none">Glamour Girl - Louie Austes</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra M<A NAME="M"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Mark Farina</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;141 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Mark_Farina_feat_Sean_Hayes_-_Dream_Machine_Downtempo_Mix.mid" style="text-decoration:none">Dream Machine (Downtempo Mix) - Mark Farina feat Sean Hayes</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Marla Turner</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;142 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Marla_Turner_and_Wax_Poetic_-_Della.mid" style="text-decoration:none">Della - Marla Turner & Wax Poetic</a>
</td>
<td width="413">
&nbsp;143 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Marla_Turner_and_Wax_Poetic_-_Love.mid" style="text-decoration:none">Love - Marla Turner & Wax Poetic</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Martina Topley Bird</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;144 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_April_Grove.mid" style="text-decoration:none">April Grove - Martina Topley Bird</a>
</td>
<td width="413">
&nbsp;145 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Baby_Blue.mid" style="text-decoration:none">Baby Blue - Martina Topley Bird</a>
<tr>
<td width="413">
&nbsp;146 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Carnies.mid" style="text-decoration:none">Carnies - Martina Topley Bird</a>
</td>
<td width="413">
&nbsp;147 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Da_Da_Da_Da.mid" style="text-decoration:none">Da Da Da Da - Martina Topley Bird</a>
<tr>
<td width="413">
&nbsp;148 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Phoenix.mid" style="text-decoration:none">Phoenix - Martina Topley Bird</a>
</td>
<td width="413">
&nbsp;149 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Poison.mid" style="text-decoration:none">Poison - Martina Topley Bird</a>
<tr>
<td width="413">
&nbsp;150 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Razor_Tongue.mid" style="text-decoration:none">Razor Tongue - Martina Topley Bird</a>
</td>
<td width="413">
&nbsp;151 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Shangri_La.mid" style="text-decoration:none">Shangri La - Martina Topley Bird</a>
<tr>
<td width="413">
&nbsp;152 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Snowman.mid" style="text-decoration:none">Sbowman - Martina Topley Bird</a>
</td>
<td width="413">
&nbsp;153 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Something_to_Say.mid" style="text-decoration:none">Something to Say - Martina Topley Bird</a>
<tr>
<td width="413">
&nbsp;154 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Valentine.mid" style="text-decoration:none">Valentine - Martina Topley Bird</a>
</td>
<td width="413">
&nbsp;155 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Martina_Topley_Bird_-_Yesterday.mid" style="text-decoration:none">Yesterday - Martina Topley Bird</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Michael Mayer</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;156 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Michael_Mayer_-_Lovefood.mid" style="text-decoration:none">Lovefood - Michael Mayer</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Mr V</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;157 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Mr._V_-_Jus_Dance_Sole_Channel.mid" style="text-decoration:none">Jus Dance Sole Channel - Mr V</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra N<A NAME="N"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">N'Dea Davenport</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;158 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/NDea_Davenport_and_Wax_Poetic_-_Sea_Grass.mid" style="text-decoration:none">Sea Grass - N'Dea Davenport & Wax Poetic</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Norah Jones</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;159 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Norah_Jones_and_Wax_Poetic_-_Angels.mid" style="text-decoration:none">Angels - Norah Jones & Wax Poetic</a>
</td>
<td width="413">
&nbsp;160 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Norah_Jones_and_Wax_Poetic_-_Tell_Me_Temple_of_Soul_Mix.mid" style="text-decoration:none">Tell Me (Temple of Soul Mix)  - Norah Jones & Wax Poetic</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra P<A NAME="P"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Parov Stelar</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;161 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Parov_Stelar_-_Kiss_Kiss.mid" style="text-decoration:none">Kiss Kiss - Parov Stelar</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Peder</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;162 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Peder_feat_Anne_Trolle_-_White_Lilies.mid" style="text-decoration:none">White Lilies - Peder feat Anne Trolle</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">People Press Play</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;163 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Always_Wrong.mid" style="text-decoration:none">Always Wrong - People Press Play</a>
</td>
<td width="413">
&nbsp;164 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Before_Me.mid" style="text-decoration:none">Before Me - People Press Play</a>
<tr>
<td width="413">
&nbsp;165 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Everything.mid" style="text-decoration:none">Everything - People Press Play</a>
</td>
<td width="413">
&nbsp;166 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Frail.mid" style="text-decoration:none">Frail - People Press Play</a>
<tr>
<td width="413">
&nbsp;167 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Girl.mid" style="text-decoration:none">Girl - People Press Play</a>
</td>
<td width="413">
&nbsp;168 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Hanging_On.mid" style="text-decoration:none">Hanging On - People Press Play</a>
<tr>
<td width="413">
&nbsp;169 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Stop.mid" style="text-decoration:none">Stop - People Press Play</a>
</td>
<td width="413">
&nbsp;170 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_Studio.mid" style="text-decoration:none">Studio - People Press Play</a>
<tr>
<td width="413">
&nbsp;171 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_That_Walk.mid" style="text-decoration:none">That Walk - People Press Play</a>
</td>
<td width="413">
&nbsp;172 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/People_Press_Play_-_These_Days.mid" style="text-decoration:none">These Days - People Press Play</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Portishead</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;173 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_All_Mine.mid" style="text-decoration:none">All Mine - Portishead</a>
</td>
<td width="413">
&nbsp;174 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Biscuit.mid" style="text-decoration:none">Biscuit - Portishead</a>
<tr>
<td width="413">
&nbsp;175 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Cowboys.mid" style="text-decoration:none">Cowboys - Portishead</a>
</td>
<td width="413">
&nbsp;176 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Elysum.mid" style="text-decoration:none">Elysum - Portishead</a>
<tr>
<td width="413">
&nbsp;177 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Glory_Box.mid" style="text-decoration:none">Glory Box - Portishead</a>
</td>
<td width="413">
&nbsp;178 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Half_Day_Closing.mid" style="text-decoration:none">Half Day Closing - Portishead</a>
<tr>
<td width="413">
&nbsp;179 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Humming.mid" style="text-decoration:none">Humming - Portishead</a>
</td>
<td width="413">
&nbsp;180 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_It_Could_Be_Sweet.mid" style="text-decoration:none">It Could be Sweet - Portishead</a>
<tr>
<td width="413">
&nbsp;181 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Its_a_Fire.mid" style="text-decoration:none">It's a Fire - Portishead</a>
</td>
<td width="413">
&nbsp;182 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Mourning_Air.mid" style="text-decoration:none">Mourning Air - Portishead</a>
<tr>
<td width="413">
&nbsp;183 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Mysterons.mid" style="text-decoration:none">Mysterons - Portishead</a>
</td>
<td width="413">
&nbsp;184 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Numb.mid" style="text-decoration:none">Numb - Portishead</a>
<tr>
<td width="413">
&nbsp;185 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Only_You.mid" style="text-decoration:none">Only You - Portishead</a>
</td>
<td width="413">
&nbsp;186 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Over.mid" style="text-decoration:none">Over - Portishead</a>
<tr>
<td width="413">
&nbsp;187 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Pedestal.mid" style="text-decoration:none">Pedestal - Portishead</a>
</td>
<td width="413">
&nbsp;188 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Roads.mid" style="text-decoration:none">Roads - Portishead</a>
<tr>
<td width="413">
&nbsp;189 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Seven_Months.mid" style="text-decoration:none">Seven Months - Portishead</a>
</td>
<td width="413">
&nbsp;190 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Sour_Times.mid" style="text-decoration:none">Sour Times - Portishead</a>
<tr>
<td width="413">
&nbsp;191 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Strangers.mid" style="text-decoration:none">Strangers - Portishead</a>
</td>
<td width="413">
&nbsp;192 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Undenied.mid" style="text-decoration:none">Undenied - Portishead</a>
<tr>
<td width="413">
&nbsp;193 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Wandering_Star.mid" style="text-decoration:none">Wandering Star - Portishead</a>
</td>
<td width="413">
&nbsp;194 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Portishead_-_Western_Eyes.mid" style="text-decoration:none">Western Eyes - Portishead</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra R<A NAME="R"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Ralph Myerz</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;195 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Ralph_Myerz_and_The_Jack_Herren_Band_-_Think_Twice.mid" style="text-decoration:none">Think Twice - Ralph Myerz & The Jack Herren Band</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra S<A NAME="S"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Saul Willians</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;196 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Saul_Williams_and_Wax_Poetic_-_Time_Jungle_Temple_of_Soul_Mix.mid" style="text-decoration:none">Time Jungle (Temple of Soul Mix) - Saul Willians & Wax Poetic</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Smooth</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;197 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Smooth_-_Smooth.mid" style="text-decoration:none">Smooth - Smooth</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Solex</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;198 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Solex_-_Another_Tune_Like_Not_Fade_Away.mid" style="text-decoration:none">Another Tune Like Not Fade Away - Solex</a>
</td>
<td width="413">
&nbsp;199 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Solex_-_Athens_-_Ohio.mid" style="text-decoration:none">Athens - Ohio - Solex</a>
<tr>
<td width="413">
&nbsp;200 - <a href="http://www.freewebtown.com/thedebasdown0003/Downtempo/Solex_-_Chris_the_Birthday_Boy.mid" style="text-decoration:none">Chris the Birthday Boy - Solex</a>
</td>
<td width="413">
&nbsp;201 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Dork_At_12_OClock.mid" style="text-decoration:none">Dork At 12 O'Clock - Solex</a>
<tr>
<td width="413">
&nbsp;202 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Escargot.mid" style="text-decoration:none">Escargot - Solex</a>
</td>
<td width="413">
&nbsp;203 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Five_Star_Shamberg.mid" style="text-decoration:none">Five Star Shamberg - Solex</a>
<tr>
<td width="413">
&nbsp;204 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Oh_Blimey.mid" style="text-decoration:none">Oh Blimey - Solex</a>
</td>
<td width="413">
&nbsp;205 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_One_Louder_Solex.mid" style="text-decoration:none">One Louder Solex - Solex</a>
<tr>
<td width="413">
&nbsp;206 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Peppy_Solex.mid" style="text-decoration:none">Peppy Solex - Solex</a>
</td>
<td width="413">
&nbsp;207 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Pick_Up.mid" style="text-decoration:none">Pick Up - Solex</a>
<tr>
<td width="413">
&nbsp;208 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Randy_Costanza.mid" style="text-decoration:none">Randy Costanza - Solex</a>
</td>
<td width="413">
&nbsp;209 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Rolex_by_Solex.mid" style="text-decoration:none">Rolex by Solex - Solex</a>
<tr>
<td width="413">
&nbsp;210 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Snappy_and_Cocky.mid" style="text-decoration:none">Snappy and Cocky - Solex</a>
</td>
<td width="413">
&nbsp;211 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Solex_All_Licketysplit.mid" style="text-decoration:none">Solex All Licketysplit - Solex</a>
<tr>
<td width="413">
&nbsp;212 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Solex_Feels_Lucky.mid" style="text-decoration:none">Solex Feels Lucky - Solex</a>
</td>
<td width="413">
&nbsp;213 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Solex_for_a_While.mid" style="text-decoration:none">Solex for a While - Solex</a>
<tr>
<td width="413">
&nbsp;214 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Solex_in_a_Slipshod_Style.mid" style="text-decoration:none">Solex in a Slipshod Style - Solex</a>
</td>
<td width="413">
&nbsp;215 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Solexs_Snag.mid" style="text-decoration:none">Solex Snag - Solex</a>
<tr>
<td width="413">
&nbsp;216 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Some_Solex.mid" style="text-decoration:none">Some Solex - Solex</a>
</td>
<td width="413">
&nbsp;217 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Superfluity.mid" style="text-decoration:none">Superfluity - Solex</a>
<tr>
<td width="413">
&nbsp;218 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Thatll_Be_$22,95.mid" style="text-decoration:none">That I'll be $22,95 - Solex</a>
</td>
<td width="413">
&nbsp;219 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Thats_What_You_Get_With_People_Like_That_On_Cruises_Like_These....mid" style="text-decoration:none">That's What You Get With People Like That on Cruises Like These... - Solex</a>
<tr>
<td width="413">
&nbsp;220 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_The_Burglars_Are_Coming.mid" style="text-decoration:none">The Burglars Are Coming - Solex</a>
</td>
<td width="413">
&nbsp;221 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Theres_a_Solex_On_the_Run.mid" style="text-decoration:none">There's a Solex on the Run - Solex</a>
<tr>
<td width="413">
&nbsp;222 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_Waking_Up_With_Solex.mid" style="text-decoration:none">Waking Up With Solex - Solex</a>
</td>
<td width="413">
&nbsp;223 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Solex_-_When_Solex_Just_Stood_There.mid" style="text-decoration:none">When Solex Just Stood There - Solex</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Soulstice</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;224 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Soulstice_-_Wind_Fila_Brazilia_Mix.mid" style="text-decoration:none">Wind (Fila Brazilia Mix) - Soulstice </a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Stephane Pompougnac</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;225 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Stephane_Pompougnac_-_Last_Night.mid" style="text-decoration:none">Last Night - Stephane Pompougnac</a>
</td>
<td width="413">
&nbsp;226 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Stephane_Pompougnac_feat_Charles_Schillings_-_Sunday_Drive_Remix.mid" style="text-decoration:none">Sunday (Drive Remix) - Stephane Pompougnac feat Charles Schillings</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra T<A NAME="T"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">The Byrd & The Bee</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;227 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Again_and_Again.mid" style="text-decoration:none">Again and Again - The Bird & The Bee</a>
</td>
<td width="413">
&nbsp;228 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Because.mid" style="text-decoration:none">Because - The Bird & The Bee</a>
<tr>
<td width="413">
&nbsp;229 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Birds_and_the_Bees.mid" style="text-decoration:none">Birds and the Bees - The Bird & The Bee</a>
</td>
<td width="413">
&nbsp;230 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Fucking_Boyfriend.mid" style="text-decoration:none">Fucking Boyfriend - The Bird & The Bee</a>
<tr>
<td width="413">
&nbsp;231 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_I_Hate_Camera.mid" style="text-decoration:none">I Hate Camera - The Bird & The Bee</a>
</td>
<td width="413">
&nbsp;232 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Im_a_Broken_Heart.mid" style="text-decoration:none">I'm a Broken Heart - The Bird & The Bee</a>
<tr>
<td width="413">
&nbsp;233 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_La_La_La.mid" style="text-decoration:none">La La La - The Bird & The Bee</a>
</td>
<td width="413">
&nbsp;234 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_My_Fair_Lady.mid" style="text-decoration:none">My Fair Lady - The Bird & The Bee</a>
<tr>
<td width="413">
&nbsp;235 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Preparedness.mid" style="text-decoration:none">Preparedness - The Bird & The Bee</a>
</td>
<td width="413">
&nbsp;236 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/The_Bird_and_The_Bee_-_Spark.mid" style="text-decoration:none">Spark - The Bird & The Bee</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Tosca</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;237 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Tosca_-_Heidi_Bruehl.mid" style="text-decoration:none">Heidi Bruehl - Tosca</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Towa Tei</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;238 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Batucada.mid" style="text-decoration:none">Batucada - Towa Tei</a>
</td>
<td width="413">
&nbsp;239 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Dubnova_Part_1and2.mid" style="text-decoration:none">Dubnova Part Land 2 - Towa Tei</a>
<tr>
<td width="413">
&nbsp;240 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_I_Want_to_Relax,_Please!.mid" style="text-decoration:none">I Want to Relax, Please! - Towa Tei</a>
</td>
<td width="413">
&nbsp;241 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_La_Douce_Vie_Amai_Seikatsu.mid" style="text-decoration:none">La Douce Vie Amai Seikatsu - Towa Tei</a>
<tr>
<td width="413">
&nbsp;242 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Luv_Connection.mid" style="text-decoration:none">Luv Connection - Towa Tei</a>
</td>
<td width="413">
&nbsp;243 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Meditation!.mid" style="text-decoration:none">Meditation! - Towa Tei</a>
<tr>
<td width="413">
&nbsp;244 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Obrigado.mid" style="text-decoration:none">Obrigado - Towa Tei</a>
</td>
<td width="413">
&nbsp;245 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Raga_Musgo.mid" style="text-decoration:none">Raga Musgo - Towa Tei</a>
<tr>
<td width="413">
&nbsp;246 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Son_of_Bambi_Walk_Tuff.mid" style="text-decoration:none">Son of Bambi Walk Tuff - Towa Tei</a>
</td>
<td width="413">
&nbsp;247 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Towa_Tei_-_Technova_La_Em_Copacabana.mid" style="text-decoration:none">Technova La Em Copacabana - Towa Tei</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra U<A NAME="U"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">U-Roy</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;248 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/U-Roy_and_Wax_Poetic_-_Flight_In_Dub.mid" style="text-decoration:none">Flight in Dub - U-Roy & Wax Poetic</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra V<A NAME="V"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Visti & Meyland</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;249 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Visti_and_Meyland_-_All_Nite_Yes_Maam.mid" style="text-decoration:none">All Nite Yes Maan - Visti & Meyland</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra W<A NAME="W"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Wax Poetic</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;250 - <a href="http://www.freewebtown.com/thedebasdown0004/Downtempo/Wax_Poetic_-_Angels.mid" style="text-decoration:none">Angels - Wax Poetic</a>
</td>
<td width="413">
&nbsp;251 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Beauty.mid" style="text-decoration:none">Beauty - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;252 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Bud.mid" style="text-decoration:none">Bud - Wax Poetic</a>
</td>
<td width="413">
&nbsp;253 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Changes.mid" style="text-decoration:none">Changes - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;254 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Dont_Leave_Him_Alone.mid" style="text-decoration:none">Don't Leave Him Alone - Wax Poetic</a>
</td>
<td width="413">
&nbsp;255 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Dreamin.mid" style="text-decoration:none">Dreamin - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;256 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Driftin.mid" style="text-decoration:none">Driftin - Wax Poetic</a>
</td>
<td width="413">
&nbsp;257 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Girl.mid" style="text-decoration:none">Girl - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;258 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_His_Story.mid" style="text-decoration:none">His Story - Wax Poetic</a>
</td>
<td width="413">
&nbsp;259 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Inside.mid" style="text-decoration:none">Inside - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;260 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Life.mid" style="text-decoration:none">Life - Wax Poetic</a>
</td>
<td width="413">
&nbsp;261 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Mother_Earth.mid" style="text-decoration:none">Mother Earth - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;262 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Nyc.mid" style="text-decoration:none">NYC - Wax Poetic</a>
</td>
<td width="413">
&nbsp;263 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_On_-_Wax_Poetic.mid" style="text-decoration:none">On - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;264 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Oriental_Wind.mid" style="text-decoration:none">Oriental Wind - Wax Poetic</a>
</td>
<td width="413">
&nbsp;265 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Purple_Elephants.mid" style="text-decoration:none">Purple Elephants - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;266 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Rootgroove.mid" style="text-decoration:none">Rootgroove - Wax Poetic</a>
</td>
<td width="413">
&nbsp;267 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Selim_II.mid" style="text-decoration:none">Selin II - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;268 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Sit_Down_and_Cry.mid" style="text-decoration:none">Sit Down and Cry - Wax Poetic</a>
</td>
<td width="413">
&nbsp;269 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Swing_Swing.mid" style="text-decoration:none">Swing Swing - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;270 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Technologie.mid" style="text-decoration:none">Technologie - Wax Poetic</a>
</td>
<td width="413">
&nbsp;271 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Tommy.mid" style="text-decoration:none">Tommy - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;272 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_U_and_I.mid" style="text-decoration:none">U and I - Wax Poetic</a>
</td>
<td width="413">
&nbsp;273 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_Under_the_Sun.mid" style="text-decoration:none">Under the Sun - Wax Poetic</a>
<tr>
<td width="413">
&nbsp;274 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Wax_Poetic_-_White_Dove.mid" style="text-decoration:none">White Dove - Wax Poetic</a>

<tr>
<td width="413">
<font face="Verdana" size="4" color="#43CD80">Letra Z<A NAME="Z"></font>
<tr>
<td width="113">
<hr color="#7FFFD4"></hr>
</td></tr><tr><td valign="top">

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Zimpala</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;275 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Zimpala_-_Adios.mid" style="text-decoration:none">Adios - Zimpala</a>

<tr>
<td width="413">
<b><font face="Bookman Old Style" color="#F0FFFF">Zuco 103</font></b><tr><td width="113"><hr color-"#F0FFFF"></hr>
<tr>
<td width="413">
&nbsp;276 - <a href="http://www.freewebtown.com/thedebasdown0005/Downtempo/Zuco_103_feat_Lee_Scratch_Perry_-_Love_is_Queen_Omega.mid" style="text-decoration:none">Love is Queen Omega - Zuco 103 feat Lee Scratch Perry</a>

<STYLE>
A:HOVER {color:#006600; background:#CCFFCC; text-decoration:none; font-family:arial; font-weight:lighter}
</STYLE>

</tr>

</html>

Se você rodar essa rotina ira ver o jeito que quero as colunas e numeração amigo, como disse em Html eu faço, mas manualmente queria fazer isso em php pra ficar tudo automático,

pois o código busca a musica no diretorio indicado e coloca nas colunas obedecendo a seguinte forma:

Midis/Estilo/Cantor/Musica

Onde:

Midis é o diretório principal das músicas

Estilo é o diretorio que vão conter as musicas no seguimento

Cantor ou Banda é o diretório onde vão conter as musicas do artista em questão e de onde o código pega pra fazer a Ancora Nome da banda ou Cantor

Musicas é onde estarão as músicas de onde o código irá colocá-las em 2 colunas no mesmo formato do código HTML

Espero que agora o amigo possa ter uma noção do que eu quero pois é desse jeito que quero e não consigo fazer e ninguém até agora pôde me ajudar.

Agradeço a ajuda do amigo abraços !!!

Link para o comentário
Compartilhar em outros sites

Participe da discussão

Você pode postar agora e se registrar depois. Se você já tem uma conta, acesse agora para postar com sua conta.

Visitante
Responder esta pergunta...

×   Você colou conteúdo com formatação.   Remover formatação

  Apenas 75 emoticons são permitidos.

×   Seu link foi incorporado automaticamente.   Exibir como um link em vez disso

×   Seu conteúdo anterior foi restaurado.   Limpar Editor

×   Você não pode colar imagens diretamente. Carregar ou inserir imagens do URL.



  • Estatísticas dos Fóruns

    • Tópicos
      152,2k
    • Posts
      652k
×
×
  • Criar Novo...