Ok. I have no understanding of jQuery or Javascript but need to do a simple task that may be quite simple.
I have a user registration page and the form code is as follows:
<form method="post" action="check.php">
Minecraft Username:<input type="text" name="user">
Password:<input type="password" name="pass">
Password Again:<input type="password" name="passConfirm">
<input type="submit" value="Login" id="buttonLogin">
</form>
Ok. So what i want to do is make it so when the 'Minecraft Username' field has changed, it will update a variable. Here is what i need, if someone could write and explain the code.
On the textbox value change, it will set the value to a php variable called $registerUsername and that variable is used in an img...
<img src="https://minotar.net/helm/<?php echo $registerUsername ?>/20.png">
Thanks alot. :D
EDIT: I want it to change in real time, not after a post.