I'm creating an android app and I need a simple inputText that allows the user to type "tags" much like the question field here on the site. How do I implement this? Do I need an external library? I've reviewed everything and no solution worked...
I have the following code
foreach ($_POST['codmunicipio'] as $key => $valor2) {
$codmunicipio = $valor2;
$valor_ipl3_f = $_POST['IPL3_valor_F'];
$valor_ipl3_j = $_POST['IPL3_valor_J'];
$sql3 = "INSERT INTO financei...
Good afternoon, I'm looking for help developing a form like this: in the form it will have some type fields: a select asking if the product has a serial number or not. If it does not have serial number it leaves the input with value predefined s...
I have a form with four numeric fields, ncr11 , ncr22 , ncr33 and ncr44 . There is still another field in the form, ncr , which will receive a total value, which is the sum of all four first fields. The sum I did w...
I have an html form with SOCIAL REASON and FANTASY NAME, so I wanted it when I typed in the "Social Reason" field the "Fantasia Name" field was automatically filled with the same value.
Thank you in advance for the help.
I have a form that is provided by the bank to generate a bank slip.
I need to split the "name" field into two in my html form.
I need to get the NAME of the client and also the NUMBER of the process.
Example:
Field 1: "Name of Student S...
I have input that after filling in and pressing Enter , it creates a list with checkbox 's. The problem is that when it is populated again, it edits the list item already created and I want to create a new item, do not edit the pr...
I have a String string1 = "123" on a page (www.paginaexample.com) and I have a input name="input1" type="text" , how to insert the content of string1 into input1 , and the entire process is done in JAVA (eclipse) ??
...