Posts by Giulio Costa • 107 points
6 posts
-
0
votes3
answers392
viewsA: How to fill in Wordpress theme’s own form data using jQuery
The problem with running jQuery was happening by running the code only in the mode of viewing wordpress changes, which was generating some conflict. The code I created to feed the form was this:…
-
0
votes3
answers392
viewsQ: How to fill in Wordpress theme’s own form data using jQuery
I’m using a theme that has its own form structure. I need to make this one formulário access data from API of table fipe and fill in the make and model field of the car: I tried to insert a…
-
1
votes1
answer1367
viewsQ: FIPE Table API Form using Angular
Personal talk. I’m a beginner in Angular and would like a help with this form. <html ng-app="app"> <head> <title>Teste</title> <script…
-
1
votes1
answer242
viewsQ: PHP code does not execute and returns as a comment to HTML
I have a code in javascript calling a file PHP: $.post("subscript.php", { idPost: idPost }, function(response2) { //Joga o resultado no lugar desejado. $("#respostaID").html(response2); }); When…
-
1
votes1
answer1070
viewsQ: Receive javascript data for query in mysql
I was trying to return the variable post_id to php in order to perform a SELECT mysql, but I’m not able to work with post_id. How to do the query ? <script type="text/html"…
-
7
votes3
answers49921
viewsQ: Convert string number to PHP integer
I’m converting a string to an integer in PHP, but at the return of settype($variavel, "integer"), or (int)$variavel bring me a null value or equal to 1. Have another way to try the conversion? The…