Posts by Rick Parapinski • 115 points
11 posts
-
0
votes2
answers85
viewsQ: Get date-ref from different buttons
I created a system where displays data from a table mysqlthrough the plugin datable. One of the output data is a modal. The javascript code takes the data-ref, that contain the id. This id will be…
-
1
votes1
answer476
viewsQ: UPDATE with AJAX
I am doing an AJAX which, after the user select a checkbox and set a status (the status is select) AJAX take the information and send to a page called status.php where the status change box,…
-
2
votes0
answers348
viewsQ: Changing Mysql with ajax and PHP
I created a system that the user can view data from a mysql database and eventually interact with that data (by changing through a select the column status in the database). There is currently a php…
-
0
votes1
answer47
viewsQ: fomatar data php
I’m trying to convert a date that comes from a datapicker, the date comes in format dd/mm/yy, but in order to work with it in mysql, I need it to be in the format yyyy-mm-dd. I’m using the following…
-
0
votes1
answer515
viewsQ: View Mysql inside modal
I am developing a new PHP ordering system that works as follows: The user does upload requests, which are stored in a Mysql table called requests; After uploading, the user can change the status of…
-
0
votes1
answer402
viewsQ: create Trigger mysql
I have two tables: the requested table and the logs table. Users can interact with the requested table, link a php script that runs a query update and update the status column. I need to create a…
-
0
votes1
answer995
viewsQ: Delete or change sql data using php
I am creating a page where some information will be uploaded, and this information will be transferred to a database and displayed on the same page, as below: As highlighted in blue, I created a…
-
4
votes2
answers1965
viewsQ: get mysql data using javascript and ajax
I’m developing a web app (case interest, follow link) and it was going all right until I got to the bottom: The field NCM is a tag input with a disabled attribute. The information within it comes…
-
0
votes1
answer267
viewsQ: query mysql autocomplete problem
I am developing an app and, in one of the steps, I am using a mysql database to store code and product information. When the user enters the product code in an input field, he is searching…
-
1
votes1
answer15751
viewsQ: Check if radio button is selected
I’m unable to verify the following condition: $("#calculo").click(function() { if ($("#opcao2").cheked()) { $("#segundoConteudo").css("display", "none") } }) .labelFake { font-weight: bold; }…
-
2
votes1
answer791
viewsQ: I calculate in javascript without refreshing the page
I’m trying to create a script on javascript to take a value entered by the user, and multiply by the specified value, but whenever I click the button, it performs the calculations, but, it updates…