ecco come ho fatto...
Codice PHP:
<?php
//Recupero il testo da formattare
echo $_POST['title'];
echo $_POST['message'];
?>
pagina che recupera il testo scritto dall'utente
mentre nel form ho messo
Codice HTML:
<form method="POST" action="veditxt.php">
<input type="text" name="title">
<br />
<textarea cols="40" rows="10" name="message">Hello world! :)</textarea>
<input type="submit" value="OK">
</form>
EDIT: come faccio a far visualizzare un URL che viene inserito dall'utente?
Così andrebbe bene (?):
echo "<a href=\"" .$_POST['title']. "\" target=\"_blank\">$_POST['title']</a><br />";