Ver Mensaje Individual
  #9 (permalink)  
Antiguo 01/03/2011, 10:49
fredyossa
 
Fecha de Ingreso: agosto-2008
Mensajes: 19
Antigüedad: 15 años, 8 meses
Puntos: 5
Respuesta: enviar archivo mp3 en mi servidor por correo

enlace.html
Código HTML:
<html>
<head>
<title>enlace</title>
</head>
<body>
nombre de la cancion -> <a href="formulario.php?cancion=url_de_cancion" target="_blank" onClick="window.open(this.href, this.target, 'width=400,height=380'); return false;">ENVIAR</a>
</body>
</html> 
formulario.php

Código PHP:
<html>
<head>
<title>formulario</title>
</head>
<body>
<form action="" method="get">
Cancion:
<input name="cancion" type="text" value="<?php echo $_GET['cancion']; ?>" />
</form>
</body>
</html>