How can i use AJAX to do something like:
<input type="text" name="test">
<?php
$test = $_POST['test']; //need to set the var "on the fly"
echo $test;
?>
I need that the php var $test is auto-updated with the text/numbers that users set on the input named "test"
LIVE EXAMPLE OF USE: test