Questions tagged as 'formularios'

2
answers

Failed to communicate child driver with its parent driver

I am creating my first application with AngularJS, and I have an error that I have not found a solution for. The problem is that at the moment of generating the values in the form, the table does not show them. This is the html code: <!D...
asked by 12.05.2016 / 09:35
1
answer

CodeIgniter form that does not validate correctly

I am trying to make a validation that although it validates well but I find two more problems that are related. They are the following: 1. When I use the <?php echo set_value('') ?> for each field and when I return the errors, the f...
asked by 06.06.2016 / 01:16
3
answers

example in field of registration form django

How can I place sample text within a field of a django registration form. something like Thank you in advance.     
asked by 26.03.2018 / 03:07
3
answers

Value with various data like to find it in other pages in PHP

I have the following code pagina1.php <input type="checkbox" class="case" name="case[]" value="<?php printf("%s",$row["nombre"]); printf("|"); printf("%s",$row["fecha"]); printf("|"); printf("%s",$row["hora"]);?>"> I send it to...
asked by 12.10.2016 / 19:36
1
answer

PHP form when attaching file turns it into .dat

Good morning, Tengos two quibbles I have made a form in php so that they can attach files and send them to the mail send well the mail but the file calls it like this: Attached data without title 0066.dat giving equal the upload it with....
asked by 21.06.2017 / 10:28
2
answers

Enter data in an HTML table using JavaScript jQuery

Hi, I am new to HTML and I need to perform the following exercise: given the following code, I need to implement javascript to be able to add the data to the table. Also, when you add one, you can delete it. Finally, you must count the number of...
asked by 06.09.2017 / 23:59
2
answers

Hide or close an MDI Children form

Hi, I have an MDI form (frmPrincipal) where I open an MDI Children form (frmListerateClients). Within this mdi children when closing the form I launch a form (frmOpciones) that allows you to make a couple of quick procedures that you can eith...
asked by 04.07.2017 / 09:58
2
answers

Activate HTML5 validations from Js

I have this js, and this html: $(document).on('click', '.validar', function (event) { event.preventDefault(); var cantidad = 0; var obj = { "correo": $(".txtEmail").attr("id") }; $.each(obj,...
asked by 20.06.2018 / 23:45
1
answer

Pass select values by POST to CodeIgniter controller

You will see I want to obtain the value of the options chosen in the select , through POST , do I have to do a array with the values selected ?, I tried to do something but I did not get it View of the form <?php if(!emp...
asked by 12.01.2017 / 18:34
1
answer

How to calculate between two dates?

I have to do an exercise to calculate how much has happened since January 1 to the date entered. They force me to use switch case and I can not use the function mktime() , and I do not finish working the code that subtracts the dates. The...
asked by 25.10.2016 / 00:43