PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
<form>
<input type=text name="username">
<input type=submit value="submit">
</form>
<?php
$username = $_POST['username'];
echo "$username";
?>
You must get the values from post.
You should find some where to read up about $_GET 7 $_POST.
Hope this helps