I have a php with a form/text area, I do not want to use a button press to post data to some other PHP.
I am looking for some auto_post AJAX query which will put all the data that user has typed in the text box, into a $variable in the same php.
Something like this:
<?php
$checkbox.= '<input type="textbox" name="vehicle" value="" />';
echo "$checkbox<br>";
$return = $checkbox;
//$return should have all the data typed by the user
?>