Hi. just a little theory help...
Does $_POST[] fill itself after a submit button is pressed? or is it like...what ever is written inside a textbox at anytime is what the POST will return?...not sure how to word it.
prety much much ..would this work:
$var = $_POST['variable']
without any buttons being pressed? I need to get the current value of a textbox, and would prefer to do it without a submit button..
Can I use javascript?
document.form1.variable.value
?
Also, in javascript would this work:
var x=<?php echo $_POST['variable'];?>;
?
Thanks!
Paul