Posts by Rafa Zanezi • 116 points
15 posts
-
1
votes3
answers1192
viewsA: How to obtain the line number of a SELECT statement in PDO?
It may be that he is not understanding your request, review the SQL syntax just for granted, if it doesn’t work try to do it this way: // Cria objeto PDO $conexao = new…
-
0
votes1
answer1202
viewsA: how to send data to another html page
Your question is confused, but if I understand correctly, you want to have access to information from all users who have filled in this information. If so, you need a database to store this data and…
-
0
votes4
answers990
viewsA: Input mask
Without a jQuery, you will need to do everything in hand, which is much more complicated... But you can use onKeyPress to count the digits during typing: <input type="text"…
-
0
votes2
answers98
viewsA: Delay doesn’t work, can someone help me?
Change your mouseenter function to look like this: <script type="text/javascript"> //variavel global var delay = 2000; function mouseEnter(){ $('.user_widget').removeClass('desativado');…
-
1
votes1
answer263
viewsQ: Javascript counter for php controller
I have a form with dynamic inputs: <form method="post" action="getDatabases/getCurso.php"> <div class="field_wrapper_curso"> <div class="col-md-12 contentCurso"> <div…
-
0
votes1
answer337
viewsQ: Error with custom inputs
Hello, I’m using a script to add input fields to a div: <script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> <script type="text/javascript"> //…
-
0
votes1
answer46
viewsQ: If loop registration error
I have a registration form: <form action="Cadastro.php" method="post"> Nome de Usuário: <br> <input class="form-control" type="text" placeholder=" algo parecido com o seu nome"…
-
0
votes2
answers952
viewsA: Sql command does not run via php
We did some research based on the things you said to me and I found this link here: http://respostas.guj.com.br/20509-fazer-consulta-no-banco-de-dados-e-retornar-valores (forgive me if I can’t put…
-
1
votes2
answers952
viewsQ: Sql command does not run via php
I’m having a problem with my bd query. I want to make a login page with the following form: <form method="post" action="Login.php"> Email:<br> <input class="form-control"…
-
0
votes0
answers36
viewsQ: Undefined index
Hello, I am in a project that works with many forms and I need that when the person arrives in the last form, when clicking on Ubmit it sends the result of a variable javascript to the bank. I’ll…
-
3
votes2
answers1169
viewsQ: Value-finding function between Javascript variables
I have the following form: <body> <form name="questao1" method="post" onsubmit="sendToDB();"> <br><input type="checkbox" name="Q1[]" value="Enfermagem"…
-
1
votes1
answer39
viewsQ: Checkbox with Function
Good afternoon, I’m putting together a form with checkboxes that call a function through the onclick <body> <form name="questao1" method="post" onsubmit="sendToDB();">…
-
0
votes0
answers1261
viewsQ: Transform letters into numbers with a Function
I am developing a code that consists of taking a letter and transforming it into a corresponding number (Example A->1, B->2...), and this letter is received through a input text. I found a…
-
1
votes1
answer39
viewsQ: Onclick with alternate calls
I wonder if there is any way to implement an alternate call in the function onclick, so that when I click once it performs a function, and when I click again call another function ... An example…
-
0
votes1
answer706
viewsQ: Jquery - How to use a href link to call a dialog
I need a command that opens a dialog every time I click a link... <map name="Mapeamento"> <div id="dialog" title="Imagem1"> <p>Informação 1</p> <p>Informação…