First commit ~0,10
BIN
tmp/DJ_INFORMATICA/BASE 1-2.jpg
Normal file
After Width: | Height: | Size: 94 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 1-3.jpg
Normal file
After Width: | Height: | Size: 21 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 1-7.jpg
Normal file
After Width: | Height: | Size: 40 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 1.jpg
Normal file
After Width: | Height: | Size: 61 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 15.jpg
Normal file
After Width: | Height: | Size: 62 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 19.jpg
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 20.jpg
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 21.jpg
Normal file
After Width: | Height: | Size: 43 KiB |
BIN
tmp/DJ_INFORMATICA/BASE 22.jpg
Normal file
After Width: | Height: | Size: 60 KiB |
BIN
tmp/DJ_INFORMATICA/CONTRATO 1.doc
Normal file
After Width: | Height: | Size: 231 KiB |
After Width: | Height: | Size: 374 KiB |
After Width: | Height: | Size: 353 KiB |
After Width: | Height: | Size: 423 KiB |
After Width: | Height: | Size: 246 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 202 KiB |
After Width: | Height: | Size: 316 KiB |
After Width: | Height: | Size: 308 KiB |
After Width: | Height: | Size: 296 KiB |
After Width: | Height: | Size: 200 KiB |
After Width: | Height: | Size: 443 KiB |
After Width: | Height: | Size: 113 KiB |
BIN
tmp/DJ_INFORMATICA/FALTA AUN 2.doc
Normal file
BIN
tmp/DJ_INFORMATICA/FALTA AUN-2.doc
Normal file
5099
tmp/DJ_INFORMATICA/TIPOS DE PUBLICIDAD EN INTERNET -CONTENIDOS-.mht
Normal file
BIN
tmp/DatosInternet/Factura del pedido Nø 292719 AMEN .msg
Normal file
6
tmp/DatosInternet/leeme.txt
Normal file
@ -0,0 +1,6 @@
|
||||
Creacion dominio VDS ( ClanMusic.com )
|
||||
|
||||
|
||||
|
||||
login: vds_1700
|
||||
|
BIN
tmp/FALTA AUN.doc
Normal file
BIN
tmp/PortalWEB-Musica.doc
Normal file
BIN
tmp/Reunion para concretar el PortalMusica.doc
Normal file
BIN
tmp/Sin título-1.psd
Normal file
296
tmp/artistas.php
Normal file
@ -0,0 +1,296 @@
|
||||
<?
|
||||
if ( $user_auth && $user_level <= -1 )
|
||||
{
|
||||
$blq1 ="Nombre,Apellido,Instrumento,url,comentario";
|
||||
$blq2 ="e_Mail,NIF,Calle,Localidad,Provincia,CP,Telefono1,Telefono2,FechaNacimiento";
|
||||
|
||||
$list = true;
|
||||
|
||||
if ( isset( $sins ) )
|
||||
{
|
||||
displayForm( "./?dgo=artistas.php&ins=new" );
|
||||
$list = false;
|
||||
}
|
||||
if ( isset( $smod ) )
|
||||
{
|
||||
$res = @mysql_query( "SELECT id,$blq1,$blq2 FROM artistas WHERE id=$smod", $conexion );
|
||||
$datos = @mysql_fetch_array( $res );
|
||||
|
||||
list( $db_id, $db_nombre,$db_apellidos,$db_instrumento,$db_url,$db_comentario,
|
||||
$db_email,$db_nif,$db_calle,$db_localidad,$db_provincia,$db_cp,$db_tlf1,$db_tlf1,$db_fechaN ) = $datos;
|
||||
|
||||
displayForm( "./?dgo=artistas.php&mod=$mod" );
|
||||
$list = false;
|
||||
}
|
||||
if ( isset( $mod ) )
|
||||
{
|
||||
$sql = "UPDATE artistas SET ".
|
||||
"Nombre='$db_nombre' ".
|
||||
",Apellido='$db_apellidos' ".
|
||||
",Instrumento='$db_instrumento' ".
|
||||
",url='$db_url' ".
|
||||
",comentario='".urlencode($db_comentario)."' ".
|
||||
|
||||
",e_Mail='$db_email' ".
|
||||
",NIF='$db_nif' ".
|
||||
",Calle='$db_calle' ".
|
||||
",Localidad='$db_localidad' ".
|
||||
",Provincia='$db_provincia' ".
|
||||
",CP='$db_cp' ".
|
||||
",Telefono1='$db_tlf2' ".
|
||||
",Telefono2='$db_tlf1' ".
|
||||
",FechaNacimiento='$db_ano/$db_mes/$db_dia' ".
|
||||
" WHERE id=$mod";
|
||||
$res = @mysql_query( $sql, $conexion );
|
||||
$list = true;
|
||||
}
|
||||
if( isset( $ins ) )
|
||||
{
|
||||
$sql = "INSERT INTO artistas (FAlta, $blq1,$blq2) VALUES (NOW(),'$db_nombre','$db_apellidos','$db_instrumento','$db_url','".urlencode($db_comentario).
|
||||
"','$db_email','$db_nif','$db_calle','$db_localidad','$db_provincia','$db_cp','$db_tlf1','$db_tlf1','$db_ano/$db_mes/$db_dia')";
|
||||
$res = @mysql_query( $sql, $conexion ) OR die( "Error<br>".@mysql_error($conexion) );
|
||||
echo "<h1>Artista insertado</h1><br><br><br>";
|
||||
echo "<p class=remark>ID asignado = ".@mysql_insert_id($conexion)."</p>";
|
||||
$list = true;
|
||||
}
|
||||
if( isset( $del ) )
|
||||
{
|
||||
$res = @mysql_query( "DELETE FROM artistas WHERE id=$del" );
|
||||
$list = true;
|
||||
}
|
||||
|
||||
if ( isset( $list ) && $list )
|
||||
{
|
||||
if ( !isset($orderBy) ) $orderBy ="id";
|
||||
if ( !isset($orderDir) ) $orderDir ="ASC";
|
||||
|
||||
displayList($conexion, $orderBy, $orderDir);
|
||||
}
|
||||
displayMenu();
|
||||
}
|
||||
|
||||
|
||||
function displayList($cnx, $orderBy, $orderDir)
|
||||
{
|
||||
$thisLOCATION = "./?dgo=artistas.php";
|
||||
$res = @mysql_query( "SELECT id, CONCAT(Apellido,', ',Nombre) Nombre, Telefono1, Telefono2 FROM artistas ORDER BY $orderBy $orderDir" );
|
||||
|
||||
echo "<table width=100%>";
|
||||
|
||||
echo "<td class=lmenuo>id <a href=\"$thisLOCATION&oderBy=id&orderDir=DESC\"><img src=\"images/actions/down.gif\" border=0></a><a href=\"$thisLOCATION&oderBy=id&orderDESC=ASC\"><img src=\"images/actions/up.gif\" border=0></a></td>".
|
||||
"<td class=lmenuo>Nombre <a href=\"$thisLOCATION&oderBy=Apellidos+Nombre&orderDir=DESC\"><img src=\"images/actions/down.gif\" border=0></a><a href=\"$thisLOCATION&oderBy=Apellidos+Nombre&orderDESC=ASC\"><img src=\"images/actions/up.gif\" border=0></a></td>".
|
||||
"<td class=lmenuo>Telefonos</td>".
|
||||
"<td class=lmenuo>Borrar</td>";
|
||||
while( $datos=@mysql_fetch_array($res) )
|
||||
{
|
||||
list ( $db_id, $db_nombre, $db_tlf1, $db_tlf2 )= $datos;
|
||||
echo "<tr><td><a href=\"./?dgo=artistas.php&smod=$db_id\">$db_id</a></td><td>$db_nombre</td><td>$db_tlf1 # $db_tlf2</td><td><a href=\"javascript::deleteUser($db_id)\"><img src=\"images/actions/cancel.gif\" border=0></a></td></tr>";
|
||||
}
|
||||
echo "</table>";
|
||||
echo '<script language="JavaScript">
|
||||
function deleteUser( which )
|
||||
{
|
||||
var submitOK = confirm("Atencion: Esta a punto de eliminar al artista.");
|
||||
if ( submitOK )
|
||||
document.location.href = "'.$thisLOCATION.'&orderBy='.$orderBy.'&orderDir='.$orderDir.'&del="+which;
|
||||
}
|
||||
</script>';
|
||||
}
|
||||
|
||||
function displayMenu()
|
||||
{
|
||||
echo '<hr noshade color="#800000">';
|
||||
echo '<p align="center"><a href="./?dgo=artistas.php&sins=new">Insertar nuevo artista</a></p>';
|
||||
echo '<hr noshade color="#800000">';
|
||||
}
|
||||
|
||||
function displayForm( $form_action )
|
||||
{
|
||||
global $db_nombre, $db_apellidos, $db_instrumento, $db_url, $db_comentario;
|
||||
global $db_email, $db_nif, $db_calle, $db_localidad, $db_provincia, $db_cp, $db_tlf1, $db_tlf2, $db_fechaN;
|
||||
|
||||
// Dividimos la fecha de nacimiento en DIA/MES/A<>O
|
||||
$db_dia = substr($db_fechaN, 8, 2 );
|
||||
$db_mes = substr($db_fechaN, 5, 2 );
|
||||
$db_ano = substr($db_fechaN, 0, 4 );
|
||||
|
||||
echo '<form action="'.$form_action.'" method="POST" name="register" onsubmit="return validateform( this.form )">';
|
||||
echo '<p align="center"> </p><div align="center"><center><table border="0" cellpadding="0" cellspacing="0" width="100%">';
|
||||
echo '<tr>
|
||||
<td><h1>Datos del artista</h1>
|
||||
<p> </p>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%" bgcolor="#800000">
|
||||
<tr>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="100%">
|
||||
<tr>
|
||||
<td width="30%">Nombre:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_nombre"
|
||||
value="'.$db_nombre.'"></td>
|
||||
<td valign="top" rowspan="5" width="50%"
|
||||
bgcolor="#B4CCE9" class="tdSuave"><strong>Informaci<63>n
|
||||
del artista</strong><p>Estos son los datos
|
||||
que cualquier usuario de la p<>gina puede
|
||||
consultar. <br>
|
||||
(Cuando Escoja un disco y/o se muestre la
|
||||
informaci<63>n de un Grupo, saldran sus
|
||||
componentes y esta es la informaci<63>n de cada
|
||||
uno de ellos).</p>
|
||||
<p>ATENCION: <20><> Se admiten controles HTML
|
||||
!!, por lo que aconsejamos sea muy cuidadoso
|
||||
con los mismos.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Apellidos:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_apellidos"
|
||||
value="'. $db_apellidos .'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Instrumento:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_instrumento"
|
||||
value="'. $db_instrumento .'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Fotografia:</td>
|
||||
<td width="20%"><input type="explorer" size="15"
|
||||
name="db_foto"
|
||||
value=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>url:</td>
|
||||
<td><input type="text" size="15"
|
||||
name="db_url" value="'.$db_url.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" width="30%">Comentarios
|
||||
adicionales:<p><textarea name="db_comentario" rows="5"
|
||||
cols="40">'.urldecode($db_comentario).'</textarea></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade color="#800000">
|
||||
<table border="0" width="100%">
|
||||
<tr>
|
||||
<td width="30%">email:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_email"
|
||||
value="'.$db_email.'"></td>
|
||||
<td valign="top" rowspan="9" width="50%"
|
||||
bgcolor="#B4CCE9" class="tdSuave"><strong>Informaci<63>n
|
||||
de contacto</strong><p>Estos datos solo son
|
||||
accesibles por el administrador/es de la p<>gina.
|
||||
Por lo que nadie mas tendr<64> acceso a los
|
||||
mismos.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">NIF:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_nif"
|
||||
value="'.$db_nif.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Direcci<63>n:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_calle"
|
||||
value="'.$db_calle.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Localidad:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_localidad"
|
||||
value="'.$db_localidad.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Provincia:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_provincia"
|
||||
value="'.$db_provincia.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">C<>d. Postal:</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_cp" value="'.$db_cp.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="30%">Telefono</td>
|
||||
<td width="20%"><input type="text" size="15"
|
||||
name="db_nacionalidad"
|
||||
value="'.$db_tlf1.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Movil:</td>
|
||||
<td><input type="text" size="15"
|
||||
name="db_tlf2"
|
||||
value="'.$db_tlf2.'"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Cumplea<65>os:</td>
|
||||
<td><select name="db_dia" size="1">
|
||||
<option>Dia...</option>';
|
||||
for ( $i=1;$i<32; $i++)
|
||||
{
|
||||
echo "<option "; if ( $i==$db_dia ) echo " SELECTED "; echo ">$i"; echo "</option>";
|
||||
}
|
||||
echo ' </select>
|
||||
<br>
|
||||
<select name="db_mes" size="1">
|
||||
<option>Mes...</option>
|
||||
<option value="1"'.if($db_mes==1)echo" selected ".'>Enero</option>
|
||||
<option value="2"'.if($db_mes==2)echo" selected ".'>Febrero</option>
|
||||
<option value="3"'.if($db_mes==3)echo" selected ".'>Marzo</option>
|
||||
<option value="4"'.if($db_mes==4)echo" selected ".'>Abril</option>
|
||||
<option value="5"'.if($db_mes==5)echo" selected ".'>Mayo</option>
|
||||
<option value="6"'.if($db_mes==6)echo" selected ".'>Junio</option>
|
||||
<option value="7"'.if($db_mes==7)echo" selected ".'>Julio</option>
|
||||
<option value="8"'.if($db_mes==8)echo" selected ".'>Agosto</option>
|
||||
<option value="9"'.if($db_mes==9)echo" selected ".'>Septiembre</option>
|
||||
<option value="10"'.if($db_mes==10)echo" selected ".'>Octubre</option>
|
||||
<option value="11"'.if($db_mes==11)echo" selected ".'>Noviembre</option>
|
||||
<option value="12"'.if($db_mes==12)echo" selected ".'>Diciembre</option>
|
||||
</select><br>
|
||||
<select name="db_ano" size="1">
|
||||
<option>A<>o...</option>';
|
||||
for($i=2003;$i>1900;$i--)
|
||||
{
|
||||
echo "<option"; if ( $i==$db_ano ) echo " SELECTED "; echo ">$i";echo "</option>";
|
||||
}
|
||||
echo '</select></td>
|
||||
<td> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<hr noshade color="#800000">
|
||||
<p align="center"><input type="button" name="btCancelar" value="Cancelar"><input
|
||||
type="submit" name="B2" value="Enviar >>"></p>
|
||||
<p><script language="JavaScript"><!--
|
||||
|
||||
function validateform(wf)
|
||||
{
|
||||
|
||||
if (document.register.db_nombre.value=="")
|
||||
{
|
||||
window.alert ("Por favor, introduce el nombre")
|
||||
return false;
|
||||
}
|
||||
if (document.register.db_nif.value=="")
|
||||
{
|
||||
window.alert ("Por favor, introduce el NIF")
|
||||
return false;
|
||||
}
|
||||
}
|
||||
// --></script><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div>
|
||||
</form>';
|
||||
}
|
||||
?>
|
281
tmp/componentes.htm
Normal file
@ -0,0 +1,281 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type"
|
||||
content="text/html; charset=iso-8859-1">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
|
||||
<title>Menu de arriba</title>
|
||||
<link rel="stylesheet" type="text/css" href="estilo.css"
|
||||
body="estilo.css">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
<div align="center"><center>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
<tr>
|
||||
<td width="169"><img src="images/logo.gif" width="169"
|
||||
height="144"></td>
|
||||
<td valign="bottom"><table border="0" cellpadding="0"
|
||||
cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="center" class="lmenu"><img
|
||||
src="banners/hdefault.gif" border="1" width="468"
|
||||
height="60"><p><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="images/tmusica.gif" width="185"
|
||||
height="35"><img src="images/tvacio.gif"
|
||||
width="95" height="34"><img
|
||||
src="images/tvacio.gif" width="95" height="34"><img
|
||||
src="images/tvacio.gif" width="95" height="34"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div><div align="center"><center>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
<tr>
|
||||
<td valign="top" width="125"><form method="post"
|
||||
name="find">
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/encontrar.gif"
|
||||
width="120" height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"
|
||||
class="lmenu"><br>
|
||||
<select name="queBuscar" size="1">
|
||||
<option value="autor">Artista</option>
|
||||
<option>grupo</option>
|
||||
<option value="disco">Disco</option>
|
||||
<option value="cancion">Canci<EFBFBD>n</option>
|
||||
<option value="idg">ID del grupo</option>
|
||||
</select><br>
|
||||
<input type="text" size="10" name="T1"><input
|
||||
type="submit" name="B1" value=">"><p>Busqueda
|
||||
Avanzada</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/secciones.gif" width="120"
|
||||
height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Inscripci<EFBFBD>n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Noticiero</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Ideas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Chat</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Estad<EFBFBD>sticas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Ranking</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/empresa.gif" width="120"
|
||||
height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Informacion
|
||||
General</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Objetivos</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Contrataci<EFBFBD>n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Management</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Tus
|
||||
Quejas</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
</td>
|
||||
<td valign="top" width="510">Informaci<EFBFBD>n del grupo<p><font
|
||||
size="4"><strong>Nombre del Grupo</strong></font></p>
|
||||
<table border="0" cellpadding="10" width="100%">
|
||||
<tr>
|
||||
<td><strong>Fecha de Creaci<63>n:</strong> 00/00/00<p>1.-
|
||||
<a href="persona.htm">Nombre del primer
|
||||
componente</a><br>
|
||||
2.- Nombre del segundo componente<br>
|
||||
3.- Nombre del tercer componente</p>
|
||||
<p> </p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><strong>Discos editados</strong><blockquote>
|
||||
<p>1.- <a href="disco.htm">Nombre del disco</a><br>
|
||||
2.- Nombre del disco<br>
|
||||
3.- Nombre del disco</p>
|
||||
</blockquote>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
<font size="4"><strong><EFBFBD>ltimos comentarios<br>
|
||||
<br>
|
||||
</strong></font></p>
|
||||
<p><font size="4"><strong><br>
|
||||
</strong></font></p>
|
||||
<div align="center"><center><table border="1"
|
||||
cellspacing="1" width="90%" bordercolor="#000000">
|
||||
<tr>
|
||||
<td bgcolor="#000000"><font color="#80FF80">Nombre
|
||||
de quien comenta</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><p>bueno pues el ultimo disco, bla bla bla
|
||||
bla<br>
|
||||
bla bla bla<br>
|
||||
bla bla</p>
|
||||
<p>Fecha del comentario</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div><p><font size="4"><strong><br>
|
||||
</strong></font></p>
|
||||
<div align="center"><center><table border="1"
|
||||
cellspacing="1" width="90%" bordercolor="#000000">
|
||||
<tr>
|
||||
<td bgcolor="#000000"><font color="#80FF80">Nombre
|
||||
de quien comenta</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><p>bueno pues el ultimo disco, bla bla bla
|
||||
bla<br>
|
||||
bla bla bla<br>
|
||||
bla bla</p>
|
||||
<p>Fecha del comentario</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div><p align="center"><font size="4"><strong><br>
|
||||
</strong></font><strong>[Dejar comentario]</strong></p>
|
||||
</td>
|
||||
<td align="center" valign="top" width="125" class="lmenu"><form
|
||||
method="POST">
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/registrate.gif"
|
||||
width="120" height="35"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td bgcolor="#CCFFCC"><table border="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td>Usuario:<br>
|
||||
Clave:</td>
|
||||
<td align="right"><input type="text"
|
||||
size="5" name="T1"><br>
|
||||
<input type="text" size="5" name="T2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>Registrate y podras acceder a secciones
|
||||
vetadas a usuarios an<61>nimos, enviar noticias
|
||||
y comentarios con tu nombre.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<p><img src="banners/vdefault.gif" width="120"
|
||||
height="360"><br>
|
||||
</p>
|
||||
<p><img src="images/php2.gif" width="102" height="47"><br>
|
||||
<br>
|
||||
<img src="images/mysql.gif" width="100" height="46"><br>
|
||||
<br>
|
||||
<!--webbot bot="HTMLMarkup" startspan --> <a href="http://jd.infdj.com/credits.htm" target="_blank"><img src="images/bt-jdsoft0.gif" alt=" Portal de M<>sica
 Dise<73>ado por JDsoft
 www.infdj.com" border="0" hspace="0" width="95" height="27"
|
||||
name="bt-jdsoft"
|
||||
onmouseout="javascript:document['bt-jdsoft'].src='images/bt-jdsoft0.gif'"
|
||||
onmouseover="javascript:document['bt-jdsoft'].src='images/bt-jdsoft1.gif'"></a><!--webbot
|
||||
bot="HTMLMarkup" endspan --><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div>
|
||||
</body>
|
||||
</html>
|
449
tmp/disco.htm
Normal file
@ -0,0 +1,449 @@
|
||||
<html>
|
||||
|
||||
|
||||
|
||||
<head>
|
||||
|
||||
<meta http-equiv="Content-Type"
|
||||
|
||||
content="text/html; charset=iso-8859-1">
|
||||
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
|
||||
|
||||
<title>Menu de arriba</title>
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="estilo.css"
|
||||
|
||||
body="estilo.css">
|
||||
|
||||
</head>
|
||||
|
||||
|
||||
|
||||
<body bgcolor="#FFFFAA">
|
||||
|
||||
<div align="center"><center>
|
||||
|
||||
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
|
||||
<tr>
|
||||
|
||||
<td width="169"><img src="images/logo.gif" width="169"
|
||||
|
||||
height="144"></td>
|
||||
|
||||
<td valign="bottom"><table border="0" cellpadding="0"
|
||||
|
||||
cellspacing="0" width="100%">
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"><img
|
||||
|
||||
src="banners/hdefault.gif" border="1" width="468"
|
||||
|
||||
height="60"><p><br>
|
||||
|
||||
</p>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td><img src="images/tmusica.gif" width="185"
|
||||
|
||||
height="35"><img src="images/tvacio.gif"
|
||||
|
||||
width="95" height="34"><img
|
||||
|
||||
src="images/tvacio.gif" width="95" height="34"><img
|
||||
|
||||
src="images/tvacio.gif" width="95" height="34"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</center></div><div align="center"><center>
|
||||
|
||||
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
|
||||
<tr>
|
||||
|
||||
<td valign="top" width="125"><form method="post"
|
||||
|
||||
name="find">
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
|
||||
width="120">
|
||||
|
||||
<tr>
|
||||
|
||||
<td><img src="images/encontrar.gif"
|
||||
|
||||
width="120" height="32"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
|
||||
width="120" bgcolor="#66CC66">
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" bgcolor="#CCFFCC"
|
||||
|
||||
class="lmenu"><br>
|
||||
|
||||
<select name="queBuscar" size="1">
|
||||
|
||||
<option value="autor">Artista</option>
|
||||
|
||||
<option>grupo</option>
|
||||
|
||||
<option value="disco">Disco</option>
|
||||
|
||||
<option value="cancion">Canci<EFBFBD>n</option>
|
||||
|
||||
<option value="idg">ID del grupo</option>
|
||||
|
||||
</select><br>
|
||||
|
||||
<input type="text" size="10" name="T1"><input
|
||||
|
||||
type="submit" name="B1" value=">"><p>Busqueda
|
||||
|
||||
Avanzada</p>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</form>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
|
||||
width="120">
|
||||
|
||||
<tr>
|
||||
|
||||
<td><img src="images/secciones.gif" width="120"
|
||||
|
||||
height="32"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
|
||||
width="120" bgcolor="#66CC66">
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
|
||||
width="100%">
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Inscripci<EFBFBD>n</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Noticiero</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Ideas</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Chat</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Estad<EFBFBD>sticas</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Ranking</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<p><br>
|
||||
|
||||
</p>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
|
||||
width="120">
|
||||
|
||||
<tr>
|
||||
|
||||
<td><img src="images/empresa.gif" width="120"
|
||||
|
||||
height="32"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
|
||||
width="120" bgcolor="#66CC66">
|
||||
|
||||
<tr>
|
||||
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
|
||||
width="100%">
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Informacion
|
||||
|
||||
General</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Objetivos</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Contrataci<EFBFBD>n</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Management</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';"> </td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td class="lmenu"
|
||||
|
||||
onmouseover="this.className='lmenuo';"
|
||||
|
||||
onmouseout="this.className='lmenu';">Tus
|
||||
|
||||
Quejas</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
<p><br>
|
||||
|
||||
</p>
|
||||
|
||||
</td>
|
||||
|
||||
<td valign="top" width="510">Listado de temas >>
|
||||
|
||||
Pop Rock<p><font size="4"><strong>Titulo del disco</strong></font></p>
|
||||
|
||||
<table border="0" cellpadding="10" width="100%">
|
||||
|
||||
<tr>
|
||||
|
||||
<td><img src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5" width="175"
|
||||
|
||||
height="133"><strong>Grupo: </strong><a
|
||||
|
||||
href="componentes.htm">Nombre del Grupo</a><br>
|
||||
|
||||
<p><strong>Fecha:</strong> 00/00/00<br>
|
||||
|
||||
<strong>Estilo:</strong> Pop-Rock<br>
|
||||
|
||||
</p>
|
||||
|
||||
<p>Este es el comentario introducido por el
|
||||
|
||||
administrador acerca de este disco. Sirve para
|
||||
|
||||
describirlo o mostrar mas informaci<63>n acerca del
|
||||
|
||||
mismo.</p>
|
||||
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td><br>
|
||||
|
||||
<strong>Album de fotos</strong><table border="0">
|
||||
|
||||
<tr>
|
||||
|
||||
<td width="33%"><img
|
||||
|
||||
src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5"
|
||||
|
||||
vspace="5" width="126" height="105"></td>
|
||||
|
||||
<td width="33%"><img
|
||||
|
||||
src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5"
|
||||
|
||||
vspace="5" width="126" height="105"></td>
|
||||
|
||||
<td width="33%"><img
|
||||
|
||||
src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5"
|
||||
|
||||
vspace="5" width="126" height="105"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td width="33%">Breve descripci<63>n de la
|
||||
|
||||
imagen de arriba</td>
|
||||
|
||||
<td width="33%">Breve descripci<63>n de la
|
||||
|
||||
imagen de arriba</td>
|
||||
|
||||
<td width="33%">Breve descripci<63>n de la
|
||||
|
||||
imagen de arriba</td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
|
||||
<td><img src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5"
|
||||
|
||||
vspace="5" width="126" height="105"></td>
|
||||
|
||||
<td><img src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5"
|
||||
|
||||
vspace="5" width="126" height="105"></td>
|
||||
|
||||
<td><img src="db-images/pop-rock.jpg"
|
||||
|
||||
align="right" border="1" hspace="5"
|
||||
|
||||
vspace="5" width="126" height="105"></td>
|
||||
|
||||
</tr>
|
||||
|
||||
<tr>
|
218
tmp/index.htm-
Normal file
@ -0,0 +1,218 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type"
|
||||
content="text/html; charset=iso-8859-1">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
|
||||
<title>Menu de arriba</title>
|
||||
<link rel="stylesheet" type="text/css" href="estilo.css"
|
||||
body="estilo.css">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
<div align="center"><center>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
<tr>
|
||||
<td width="169"><img src="images/logo.gif" width="169"
|
||||
height="144"></td>
|
||||
<td valign="bottom"><table border="0" cellpadding="0"
|
||||
cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="center" class="lmenu"><img
|
||||
src="banners/hdefault.gif" border="1" width="468"
|
||||
height="60"><p><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="images/tmusica.gif" width="185"
|
||||
height="35"><img src="images/tvacio.gif"
|
||||
width="95" height="34"><img
|
||||
src="images/tvacio.gif" width="95" height="34"><img
|
||||
src="images/tvacio.gif" width="95" height="34"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div><div align="center"><center>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
<tr>
|
||||
<td valign="top" width="125"><form method="post"
|
||||
name="find">
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/encontrar.gif"
|
||||
width="120" height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"
|
||||
class="lmenu"><br>
|
||||
<select name="queBuscar" size="1">
|
||||
<option value="autor">Artista</option>
|
||||
<option>grupo</option>
|
||||
<option value="disco">Disco</option>
|
||||
<option value="cancion">Canci<63>n</option>
|
||||
<option value="idg">ID del grupo</option>
|
||||
</select><br>
|
||||
<input type="text" size="10" name="T1"><input
|
||||
type="submit" name="B1" value=">"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/secciones.gif" width="120"
|
||||
height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Inscripci<63>n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Noticiero</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Ideas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Chat</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Estad<61>sticas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Ranking</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/empresa.gif" width="120"
|
||||
height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Informacion
|
||||
General</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Objetivos</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Contrataci<63>n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Management</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Tus
|
||||
Quejas</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
</td>
|
||||
<td valign="top">Listado de temas >> Pop Rock</td>
|
||||
<td align="center" valign="top" width="125" class="lmenu"><form
|
||||
method="POST">
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/registrate.gif"
|
||||
width="120" height="35"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td bgcolor="#CCFFCC"><table border="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td>Usuario:<br>
|
||||
Clave:</td>
|
||||
<td align="right"><input type="text"
|
||||
size="5" name="T1"><br>
|
||||
<input type="text" size="5" name="T2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>Registrate y podras acceder a secciones
|
||||
vetadas a usuarios an<61>nimos, enviar noticias
|
||||
y comentarios con tu nombre.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<p><img src="banners/vdefault.gif" width="120"
|
||||
height="360"><br>
|
||||
</p>
|
||||
<p><img src="images/php2.gif" width="102" height="47"><br>
|
||||
<br>
|
||||
<img src="images/mysql.gif" width="100" height="46"><br>
|
||||
<br>
|
||||
<!--webbot bot="HTMLMarkup" startspan --> <a href="http://jd.infdj.com/credits.htm" target="_blank"><img src="images/bt-jdsoft0.gif" alt=" Portal de M<>sica
 Dise<73>ado por JDsoft
 www.infdj.com" border="0" hspace="0" width="95" height="27"
|
||||
name="bt-jdsoft"
|
||||
onmouseout="javascript:document['bt-jdsoft'].src='images/bt-jdsoft0.gif'"
|
||||
onmouseover="javascript:document['bt-jdsoft'].src='images/bt-jdsoft1.gif'"></a><!--webbot
|
||||
bot="HTMLMarkup" endspan --><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div>
|
||||
</body>
|
||||
</html>
|
BIN
tmp/muestras/inicio.jpg
Normal file
After Width: | Height: | Size: 46 KiB |
BIN
tmp/muestras/insertando_noticias.jpg
Normal file
After Width: | Height: | Size: 45 KiB |
BIN
tmp/muestras/listado_usuarios.jpg
Normal file
After Width: | Height: | Size: 52 KiB |
BIN
tmp/muestras/noticiario.jpg
Normal file
After Width: | Height: | Size: 67 KiB |
BIN
tmp/muestras/registro.jpg
Normal file
After Width: | Height: | Size: 76 KiB |
BIN
tmp/music.JPG
Normal file
After Width: | Height: | Size: 136 KiB |
BIN
tmp/music.gif
Normal file
After Width: | Height: | Size: 1.4 MiB |
BIN
tmp/partition3.jpg
Normal file
After Width: | Height: | Size: 66 KiB |
243
tmp/persona.htm
Normal file
@ -0,0 +1,243 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type"
|
||||
content="text/html; charset=iso-8859-1">
|
||||
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
|
||||
<title>Menu de arriba</title>
|
||||
<link rel="stylesheet" type="text/css" href="estilo.css"
|
||||
body="estilo.css">
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF">
|
||||
<div align="center"><center>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
<tr>
|
||||
<td width="169"><img src="images/logo.gif" width="169"
|
||||
height="144"></td>
|
||||
<td valign="bottom"><table border="0" cellpadding="0"
|
||||
cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td align="center" class="lmenu"><img
|
||||
src="banners/hdefault.gif" border="1" width="468"
|
||||
height="60"><p><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><img src="images/tmusica.gif" width="185"
|
||||
height="35"><img src="images/tvacio.gif"
|
||||
width="95" height="34"><img
|
||||
src="images/tvacio.gif" width="95" height="34"><img
|
||||
src="images/tvacio.gif" width="95" height="34"></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div><div align="center"><center>
|
||||
|
||||
<table border="0" cellpadding="0" cellspacing="0" width="760">
|
||||
<tr>
|
||||
<td valign="top" width="125"><form method="post"
|
||||
name="find">
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/encontrar.gif"
|
||||
width="120" height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"
|
||||
class="lmenu"><br>
|
||||
<select name="queBuscar" size="1">
|
||||
<option value="autor">Artista</option>
|
||||
<option>grupo</option>
|
||||
<option value="disco">Disco</option>
|
||||
<option value="cancion">Canci<EFBFBD>n</option>
|
||||
<option value="idg">ID del grupo</option>
|
||||
</select><br>
|
||||
<input type="text" size="10" name="T1"><input
|
||||
type="submit" name="B1" value=">"><p>Busqueda
|
||||
Avanzada</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/secciones.gif" width="120"
|
||||
height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Inscripci<EFBFBD>n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Noticiero</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Ideas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Chat</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Estad<EFBFBD>sticas</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center" class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Ranking</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/empresa.gif" width="120"
|
||||
height="32"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td align="center" bgcolor="#CCFFCC"><br>
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Informacion
|
||||
General</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Objetivos</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Contrataci<EFBFBD>n</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Management</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="lmenu"
|
||||
onmouseover="this.className='lmenuo';"
|
||||
onmouseout="this.className='lmenu';">Tus
|
||||
Quejas</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
</td>
|
||||
<td valign="top" width="510"><a href="componentes.htm">Informaci<EFBFBD>n
|
||||
del Grupo</a> >> Datos del cantante<p><font
|
||||
size="4"><strong>Nombre del cantante</strong></font></p>
|
||||
<table border="0" cellpadding="10" width="100%">
|
||||
<tr>
|
||||
<td><img src="db-images/pop-rock.jpg"
|
||||
align="left" border="1" hspace="5" vspace="5"
|
||||
width="126" height="105">Esto son los datos
|
||||
contenidos en un campo de edici<63>n abierta, para
|
||||
escribir contenido aleatorio acerca de la persona
|
||||
en cuestion. Puede tener un m<>ximo de 500 letras...<br>
|
||||
<p><strong>url:</strong> direccion personal del
|
||||
cantante<br>
|
||||
<strong>e-mail:</strong> direccion del cantante<br>
|
||||
</p>
|
||||
<p> </p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<p><br>
|
||||
</p>
|
||||
<p><br>
|
||||
</p>
|
||||
</td>
|
||||
<td align="center" valign="top" width="125" class="lmenu"><form
|
||||
method="POST">
|
||||
<table border="0" cellpadding="0" cellspacing="0"
|
||||
width="120">
|
||||
<tr>
|
||||
<td><img src="images/registrate.gif"
|
||||
width="120" height="35"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" cellpadding="0" cellspacing="1"
|
||||
width="120" bgcolor="#66CC66">
|
||||
<tr>
|
||||
<td bgcolor="#CCFFCC"><table border="0"
|
||||
width="100%">
|
||||
<tr>
|
||||
<td>Usuario:<br>
|
||||
Clave:</td>
|
||||
<td align="right"><input type="text"
|
||||
size="5" name="T1"><br>
|
||||
<input type="text" size="5" name="T2"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<p>Registrate y podras acceder a secciones
|
||||
vetadas a usuarios an<61>nimos, enviar noticias
|
||||
y comentarios con tu nombre.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
<p><img src="banners/vdefault.gif" width="120"
|
||||
height="360"><br>
|
||||
</p>
|
||||
<p><img src="images/php2.gif" width="102" height="47"><br>
|
||||
<br>
|
||||
<img src="images/mysql.gif" width="100" height="46"><br>
|
||||
<br>
|
||||
<!--webbot bot="HTMLMarkup" startspan --> <a href="http://jd.infdj.com/credits.htm" target="_blank"><img src="images/bt-jdsoft0.gif" alt=" Portal de M<>sica
 Dise<73>ado por JDsoft
 www.infdj.com" border="0" hspace="0" width="95" height="27"
|
||||
name="bt-jdsoft"
|
||||
onmouseout="javascript:document['bt-jdsoft'].src='images/bt-jdsoft0.gif'"
|
||||
onmouseover="javascript:document['bt-jdsoft'].src='images/bt-jdsoft1.gif'"></a><!--webbot
|
||||
bot="HTMLMarkup" endspan --><br>
|
||||
</p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center></div>
|
||||
</body>
|
||||
</html>
|