Show the variable with its different value

0

Good morning, I have a doubt I am generating this cycle:

 while (rs.next()) 
        {
            num1 = rs.getInt(1);
            texto1 = rs.getString(2);
            texto2=rs.getString(3);

        }

input1 = num1 (first value) input2 = num1 (second value) input3 = num1 (third value) input4 = text1 (first value) input5 = text1 (second value) input6 = text 1 (third value)

Then there are three variables that will have three values neither more nor less. Is it possible to show that variable in three different inputs, that is, its value? I normally return the variables with json

    
asked by David Melo 13.04.2018 в 22:26
source

0 answers