Quote:
So what is the best method to SEND the address value from the form to the PHP script.And how do I return the two calculated values and have them dynamically update the two textboxes with the results
I might be mis-understanding you but you are adding unnescary layers of complication. Why not include a php script in the web page, let that do the calculation then show the results on the same page? [HTML]<form name="address_search" method="$_GET" action="http://............/Geocoder/googlegeoapi.php?">
<input name="HOUSE_NUM" type="text" id="HOUSE_NUM" size="20" >
<input type="submit" name="Submit" value="Submit" >
</form>
<? include 'calculate.php';?> #calculates $x and $y
<input type="text" name="x_coord" id="x_coord" value="<? echo $x;?>"> <br>
<input type="text" name="y_coord" id="y_coord" value="<? echo $y;?>" >
<a href="javascript
:doSubmit();">Zoom to this location</a>[/HTML]