What I want to do is have two input boxes that a user can type numbers into and then a button that will take those numbers and use them in other functions to populate tables further down the page. I had it working where I just pointed to the page again and it "refreshed" with the user inputs, but I don't want to refresh the page because it moves the page back to the top of the viewer.
I have this now:
VD Start (V): <input type=text name="start<?php $deviceType[4]?>" size=3>
VD Stop (V): <input type=text name="stop<?php $deviceType[4]?>" size=3>
<BUTTON onClick="">
<i><font face=arial><b>Correlate!</b></i>
</BUTTON>
and it doesn't work. I had
<form action="CorrelationTemp.php" method="POST">
VD Start (V): <input type=text name="start<?php $deviceType[4]?>" size=3>
VD Stop (V): <input type=text name="stop<?php $deviceType[4]?>" size=3>
<input type=submit name=correlate value="Correlate!!">
which worked but it refreshed and made the browser go back to the top of the page.