Hi Sbillard, Tks.
i'm now with this code :
`
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
Votre nom :
<input type="text" name="nom" size="40" />
<input type="submit" name="Submit" value="Envoyer">
</form>
<?
if(!empty($_POST['nom'])){
header ("Location: http://www.mydomain.com/pages/.($_POST['nom'])");
}else{
echo 'error';
}
?>
`
I canno"t see where it's not working