I'm a newbie in php... I have a form who pass a username variable to a php scrit, this is the code..
<form action="bottone.php" method="get"> Inserisci il tuo nome utente: <input name="username" type="text" /> <input type="submit" value="GENERA CODICE" /> </form>
I would like to display this HTML code in the botton.php script:
<a href=www.mysite.com/$username <img src="http://www.mysite.com/images/logo.jpg" width="50" height="50" alt="La mia pagina su Mysite"/></a>
where $username is the variable passed from the form... how can I do that with an echo function?? Thanks