Hey there.. Thanks for the reply. The form is pretty basic. I have a sql call that pulls a list of names. Then I just loop through each of those names to populate a variable in an html input box. The user clicks save, it sends them to a page with the same sql call so it loops the same, then grabs some other vars from the call as well as grabbing their input var. The form and sql and all that works like a charm, I just need to reorder the numbers. A quick not code correct idea is below:
--Sql Call
<form>
-A for loop {
<input box with $var for value>
{
<submit button>
<end form>
That above sends to another simple page that is:
--same sql call
-Same for loop {
-Sql insert, update or delete depending on if the field exists or not already. Now all rows have been inserted or updated. Since no ordering was done, some rows may have duplicate order numbers. eg. 1,2,3,3,3,4,5,6
And: (this is where I need an update to correct the numbering order)
{
Lastly I simply display the list that was generated above..
The stuff above is pretty basic, but it should give you an idea of what I am doing. If you need more info just let me know. I don't have the exact code on me right now but wanted to get you a response. Thanks again for your help!