Posts by MagicHat • 12,262 points
358 posts
-
0
votes2
answers581
viewsA: What code and language does the input tag do what it does?
The element input is unique to the HTML markup language, and is part of a template for a data set, the form, associated with a URI method and action. HTML Elements works for accessing files on the…
-
-2
votes1
answer160
viewsQ: How to display in html the data of all columns obtained through a mysql query?
I have a table with 1000 columns (example), how to display the content , of all columns of a row obtained through the "ID"? SELECT * FROM `tabela_1000_colunas` WHERE id = 1; After this select, how…
-
-2
votes2
answers1685
viewsQ: How to return all fields of a "Mysql" line by the "id" of the line?
Given a table "Mysql", where there are 3 fields: ID - First name - Last name As it should be the query so that only by informing the ID, it returns all fields of the line ? Note: I only put 3 fields…
-
0
votes1
answer603
viewsQ: Update table field without refresh?
I have a "div" that brings the data of a table "Mysql", how do I do so when clicking on that "div" the data becomes editable ? But without going to another page. <div…
-
0
votes1
answer68
viewsQ: How to edit registered data so that when selecting the registration to be changed, its data will appear in the same form that was created?
Given the following form: <form action="action_page.php"> <fieldset> <legend>Personal information:</legend> First name:<br> <input type="text" name="firstname"…
-
2
votes1
answer102
viewsQ: Send multiple "select" text to the same "input text"?
Given the code: var select = document.getElementById('meuSelect'); var input = document.querySelector('input'); select.addEventListener('change', function() { var option =…
javascriptasked MagicHat 12,262 -
1
votes1
answer62
viewsQ: Send one of the select values and paste into an input text?
How to send the value of one of the options of a "select" to an input text?
-
3
votes2
answers581
viewsQ: What code and language does the input tag do what it does?
The input tag is an html tag, i.e., markup language, however this tag performs instructions such as from a programming language. After all as the tag "input file", does to access the operating…