Suppose the simple three input form below. Using the values of lat and lon I need to run a PHP function (already written) that creates the value I want in sitename. The current form action already works just fine, and does something completely different than my question.
<form name="w3Balltrak" class="feedbackform" action="readyget.pl" method="post"
<input type="text" id='lat' name='lat' value='' />
<input type="text" id='lon' name='lon' value='' />
<input type="text" id='sitename' name='sitename' value='' />
<input type="submit" value="Submit" />
</form>
My problem is I don't know how to set the value of the sitename to the output of my PHP function. The function works great, a call to it in PHP would look like this 'getWX($lat, $lon)' and the return would look like this 'MCI'.
How do I make the default value of sitename MCI immediately after the user enters a value in lon but before he hits the submit button at the end of the form?
I hope I asked this well enough for someone to understand and answer.