Posts by cristy • 33 points
11 posts
-
0
votes1
answer61
viewsA: Use Animation and keyframe in ui material makeStyles
After some effort in vain with makeStyles, I managed to accomplish using Styled-Components as an option, because I am already using this dependency for other components. Follow the code using the…
-
-1
votes1
answer61
viewsQ: Use Animation and keyframe in ui material makeStyles
I am trying to use keyframes in makestyles of the ui material, but no effects appear. The Goal is to make the button pulse. What’s wrong with my code? This is what I managed to evolve using an…
-
0
votes1
answer1069
viewsQ: How to count repeated items with javascript?
Example: const cores = [{id: 1, cor: 'azul'}, {id: 2, cor: 'azul'}, {id: 3, cor: 'azul'}, {id:4, cor: 'verde'}, {id: 5, cor: 'verde'}, {id: 6, cor: 'azul'}, {id: 7, cor: 'verde'}, {id: 8, cor:…
-
0
votes1
answer68
viewsQ: Replace google maps maker A and B in the "Place autocomplete and Directions" example
I’m studying the google maps api, and I’m trying to personalize this example from google itself, but I’ve already read the documentation on Google marketing but without success when trying to…
-
1
votes0
answers49
viewsQ: Pass variable into the IN
I’m having a hard time passing a variable into the IN in Mysql - PHP - PDO. The URL looks like this: /PESO=50&IDADE=18,20 Code: $read->FullRead("SELECT DISTINCT NOME FROM pessoas WHERE PESO…
-
0
votes1
answer63
viewsA: LIMIT does not interpret variables
Hello, you are reading in your Database, so use the "GET" method. See a bit about http requests: HTTP requests You must be trying to do it this way: <script> $(document).ready(function(){…
-
0
votes3
answers901
viewsA: Webservice REINF Upload - Remote server returned an error: (500) Internal Server Error
Error 500 usually refers to permissions. Make sure you have permission to access information, folders or directories. See more in the link: Error 500…
-
1
votes1
answer72
viewsQ: Use the same script for multiple forms
How do I use only one script for multiple forms? <script> $(document).ready(function() { $("#formPost").submit(function() { var dados = $(this).serialize(); $.ajax({ type: 'POST', url:…
-
-1
votes1
answer58
viewsQ: Help me to understand
Use this script to send information to the Jsonplaceholder api. I would like to understand why the following snippets: Why should I serialize before using stringify? var dados = $(this).serialize();…
-
0
votes2
answers178
viewsQ: How to add image upload to this php code?
I would like you to help me insert image upload into this php code! <?php $nomeresponsavel = $_POST['nomeresponsavel']; //pega os dados que foi digitado no ID subject. $telefoneresponsavel =…
-
0
votes0
answers75
viewsQ: Show only comments made on author posts
I would like to know how to make this code I found in the forum of WordPress displays only comments made on logged user posts (Author logged in) in the WordPress. I want to display this list on…