Código HTML:
<form name="url" action="formulario.php" method="post"> <button><input name="url" type="hidden" id="url" value="http://localhost/proyectocrossh/"> <img src="img/enviar_amigo.jpg" width="103" height="49" /> </button> </form>
formulario.php con la dirreccion que aparece en value,
contenido del formulario :
Nombre, correo electronico, mensaje (en este mensaje va la url y algo mas que el usuario quiera escribir.
Código HTML:
<div> <table width="251" border="0"> <tr> <td width="245"> <form action="" method="post"> <table width="241" border="0"> <tr> <td width="235"><label>Nombre:</label> <input type="text" name="nombre" id="nombre"></td> </tr> <tr> <td><label>Email:</label> <input type="text" name="email" id="email"></td> </tr> <tr> <td><label>Contenido:</label> <textarea name="contenido" rows="5" id="contenido"></textarea></td> </tr> <tr> <td><label> <input type="submit" name="enviar" id="enviar" value="Enviar"> </label></td> </tr> </table> </form></td> </tr> </table> </div>
me lleve al formulario y ya tenga escrita la url que capto.
byeee