I've got a calculator that users enter data into. Upon submitting the tables calculate various values. The problem I am having occurs when people try to use links to jump to a specific section (using div's with ID's). The data from the original submission gets dumped. Now, I was able to work around this with the original form fields using echo and get. However, it doesn't work for the links. Below is the link description. It jumps to the div tag fine, but the data is not transferred.
newcalculatorlayout.php?hour=<?php $GET['hour'];?>&minute=<?php $GET['minute'];?>&second=<?php $_GET['second'];?>&Input=Submit+Query#ld
My main notion is that the data comes from within a form and cannot be taken out of that area, but I am not 100% about that.