Posts by Paulo • 168 points
5 posts
-
1
votes1
answer23293
viewsA: list index out of range
First you did a for r items to complete the variable TSup. Then you did a for r + 1 elements to access Tsup[i]. It’s natural to make a mistake list index out of range. The problem is there. I…
-
1
votes2
answers224
viewsA: Is there a paid localhost server?
In fact, what you mean is a web server. Strictly speaking, Xampp is not a web server per se. It is an application that has several built-in servers. In addition to apache, it uses mysql (among…
-
1
votes1
answer1248
viewsA: JPA(2.1) dependency on POM.xml file
See if these are the ones you want. <dependency> <groupId>org.eclipse.persistence</groupId> <artifactId>org.eclipse.persistence.jpa.jpql</artifactId>…
-
1
votes3
answers221
viewsA: cep - fields disabled for user
What you want is a disabled input. Check out this example: <form action="action.html"> First name: <input type="text" name="fname"><br> Last name: <input type="text"…
-
0
votes4
answers1962
viewsA: How to repeat the fields of a form?
You can use javascript for this. When you click the button, you can do it (it’s just an example, you have to adapt to your code): function add() { var x = '<input type="text" placeholder: "Nome…