Se ho capito bene... vorresti concatenare le due stringhe?
input.html
string.phpCodice PHP:
<form action="string.php" method="POST">
<input type="text" name="username">
<input type="password" name="password">
<input type="submit" value="Esegui" name="esegui">
</form>
Codice PHP:
$stringa = $_POST['username'] . $_POST['password'];